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

SupermodelArtifactFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the SupermodelArtifactFromJSONTyped() function in SupermodelArtifact.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  8aba592a_e633_72bd_4648_f4fd1835ef95["SupermodelArtifactFromJSONTyped()"]
  9304565f_42d3_68a0_a8b9_0e2f54de3150["SupermodelArtifact.ts"]
  8aba592a_e633_72bd_4648_f4fd1835ef95 -->|defined in| 9304565f_42d3_68a0_a8b9_0e2f54de3150
  20454f31_8378_15bb_737a_54f3e156bacc["SupermodelArtifactFromJSON()"]
  20454f31_8378_15bb_737a_54f3e156bacc -->|calls| 8aba592a_e633_72bd_4648_f4fd1835ef95
  style 8aba592a_e633_72bd_4648_f4fd1835ef95 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/SupermodelArtifact.ts lines 62–73

export function SupermodelArtifactFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupermodelArtifact {
    if (json == null) {
        return json;
    }
    return {
        
        'id': json['id'],
        'kind': json['kind'],
        'label': json['label'],
        'metadata': json['metadata'] == null ? undefined : json['metadata'],
    };
}

Domain

Subdomains

Frequently Asked Questions

What does SupermodelArtifactFromJSONTyped() do?
SupermodelArtifactFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/SupermodelArtifact.ts.
Where is SupermodelArtifactFromJSONTyped() defined?
SupermodelArtifactFromJSONTyped() is defined in src/models/SupermodelArtifact.ts at line 62.
What calls SupermodelArtifactFromJSONTyped()?
SupermodelArtifactFromJSONTyped() is called by 1 function(s): SupermodelArtifactFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free