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

SupermodelIRAsyncToJSON() — typescript-sdk Function Reference

Architecture documentation for the SupermodelIRAsyncToJSON() function in SupermodelIRAsync.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  4a8cd700_b14f_2040_80b0_954c9fac0854["SupermodelIRAsyncToJSON()"]
  a107f77a_d00d_2062_cad7_f47509e8e442["SupermodelIRAsync.ts"]
  4a8cd700_b14f_2040_80b0_954c9fac0854 -->|defined in| a107f77a_d00d_2062_cad7_f47509e8e442
  5cb4729f_dd4c_43a0_ffb5_eac90b768885["SupermodelIRToJSON()"]
  4a8cd700_b14f_2040_80b0_954c9fac0854 -->|calls| 5cb4729f_dd4c_43a0_ffb5_eac90b768885
  style 4a8cd700_b14f_2040_80b0_954c9fac0854 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/SupermodelIRAsync.ts lines 101–113

export function SupermodelIRAsyncToJSON(value?: SupermodelIRAsync | null): any {
    if (value == null) {
        return value;
    }
    return {
        
        'status': value['status'],
        'jobId': value['jobId'],
        'retryAfter': value['retryAfter'],
        'error': value['error'],
        'result': SupermodelIRToJSON(value['result']),
    };
}

Domain

Subdomains

Frequently Asked Questions

What does SupermodelIRAsyncToJSON() do?
SupermodelIRAsyncToJSON() is a function in the typescript-sdk codebase, defined in src/models/SupermodelIRAsync.ts.
Where is SupermodelIRAsyncToJSON() defined?
SupermodelIRAsyncToJSON() is defined in src/models/SupermodelIRAsync.ts at line 101.
What does SupermodelIRAsyncToJSON() call?
SupermodelIRAsyncToJSON() calls 1 function(s): SupermodelIRToJSON.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free