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
  26816e7d_afb4_9320_d81e_9399214400b3["SupermodelIRAsyncToJSON()"]
  70bf7114_9140_adb0_dcfb_e8e977109f37["SupermodelIRToJSON()"]
  26816e7d_afb4_9320_d81e_9399214400b3 -->|calls| 70bf7114_9140_adb0_dcfb_e8e977109f37
  style 26816e7d_afb4_9320_d81e_9399214400b3 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.
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