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

FunctionDescriptionFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the FunctionDescriptionFromJSONTyped() function in FunctionDescription.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  3806aa72_e338_d9c1_dc7c_77333fd239c7["FunctionDescriptionFromJSONTyped()"]
  6f8892c3_e0d0_81c8_5f2c_2e0fd6696786["FunctionDescription.ts"]
  3806aa72_e338_d9c1_dc7c_77333fd239c7 -->|defined in| 6f8892c3_e0d0_81c8_5f2c_2e0fd6696786
  8963e8e0_8080_f365_3ed6_0f0e0f9fc7fa["FunctionDescriptionFromJSON()"]
  8963e8e0_8080_f365_3ed6_0f0e0f9fc7fa -->|calls| 3806aa72_e338_d9c1_dc7c_77333fd239c7
  style 3806aa72_e338_d9c1_dc7c_77333fd239c7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/FunctionDescription.ts lines 55–65

export function FunctionDescriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FunctionDescription {
    if (json == null) {
        return json;
    }
    return {
        
        'functionId': json['functionId'],
        'descriptionSummary': json['descriptionSummary'],
        'domainName': json['domainName'] == null ? undefined : json['domainName'],
    };
}

Domain

Subdomains

Frequently Asked Questions

What does FunctionDescriptionFromJSONTyped() do?
FunctionDescriptionFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/FunctionDescription.ts.
Where is FunctionDescriptionFromJSONTyped() defined?
FunctionDescriptionFromJSONTyped() is defined in src/models/FunctionDescription.ts at line 55.
What calls FunctionDescriptionFromJSONTyped()?
FunctionDescriptionFromJSONTyped() is called by 1 function(s): FunctionDescriptionFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free