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
  2b323788_ca31_da82_1c3d_f7e74fda09b0["SupermodelArtifactFromJSONTyped()"]
  987b57cc_81cb_120f_7704_4d4d85e5a9d6["SupermodelArtifactFromJSON()"]
  987b57cc_81cb_120f_7704_4d4d85e5a9d6 -->|calls| 2b323788_ca31_da82_1c3d_f7e74fda09b0
  style 2b323788_ca31_da82_1c3d_f7e74fda09b0 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.
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