Home / Function/ SupermodelIRAsyncFromJSONTyped() — typescript-sdk Function Reference

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
  639c6afa_4244_d1ec_b79f_42f47e42468a["SupermodelIRAsyncFromJSONTyped()"]
  403538a2_857a_fc78_6fe8_43d8c41e36dc["SupermodelIRAsyncFromJSON()"]
  403538a2_857a_fc78_6fe8_43d8c41e36dc -->|calls| 639c6afa_4244_d1ec_b79f_42f47e42468a
  c54cd082_4dfa_3bb1_24f2_2f520cf1cdbc["SupermodelIRFromJSON()"]
  639c6afa_4244_d1ec_b79f_42f47e42468a -->|calls| c54cd082_4dfa_3bb1_24f2_2f520cf1cdbc
  style 639c6afa_4244_d1ec_b79f_42f47e42468a 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

Frequently Asked Questions

What does SupermodelIRAsyncFromJSONTyped() do?
SupermodelIRAsyncFromJSONTyped() is a function in the typescript-sdk codebase.
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