SupermodelIRAsyncFromJSONTyped() — typescript-sdk Function Reference
Architecture documentation for the SupermodelIRAsyncFromJSONTyped() function in SupermodelIRAsync.ts from the typescript-sdk codebase.
Entity Profile
Dependency Diagram
graph TD ea0d3a69_eb39_24b0_ceca_f21cb092b444["SupermodelIRAsyncFromJSONTyped()"] a107f77a_d00d_2062_cad7_f47509e8e442["SupermodelIRAsync.ts"] ea0d3a69_eb39_24b0_ceca_f21cb092b444 -->|defined in| a107f77a_d00d_2062_cad7_f47509e8e442 fae3e91a_a091_7040_24ed_c6bd7078eb35["SupermodelIRAsyncFromJSON()"] fae3e91a_a091_7040_24ed_c6bd7078eb35 -->|calls| ea0d3a69_eb39_24b0_ceca_f21cb092b444 570102ba_50d4_f2e2_4f6d_4d05331e8bd5["SupermodelIRFromJSON()"] ea0d3a69_eb39_24b0_ceca_f21cb092b444 -->|calls| 570102ba_50d4_f2e2_4f6d_4d05331e8bd5 style ea0d3a69_eb39_24b0_ceca_f21cb092b444 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/models/SupermodelIRAsync.ts lines 87–99
export function SupermodelIRAsyncFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupermodelIRAsync {
if (json == null) {
return json;
}
return {
'status': json['status'],
'jobId': json['jobId'],
'retryAfter': json['retryAfter'] == null ? undefined : json['retryAfter'],
'error': json['error'] == null ? undefined : json['error'],
'result': json['result'] == null ? undefined : SupermodelIRFromJSON(json['result']),
};
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does SupermodelIRAsyncFromJSONTyped() do?
SupermodelIRAsyncFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/SupermodelIRAsync.ts.
Where is SupermodelIRAsyncFromJSONTyped() defined?
SupermodelIRAsyncFromJSONTyped() is defined in src/models/SupermodelIRAsync.ts at line 87.
What does SupermodelIRAsyncFromJSONTyped() call?
SupermodelIRAsyncFromJSONTyped() calls 1 function(s): SupermodelIRFromJSON.
What calls SupermodelIRAsyncFromJSONTyped()?
SupermodelIRAsyncFromJSONTyped() is called by 1 function(s): SupermodelIRAsyncFromJSON.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free