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
  5144a3f0_e76c_f588_3bd6_63c68df6cce7["FunctionDescriptionFromJSONTyped()"]
  5d44428f_a9b4_d724_cf1d_b2d016a85cae["FunctionDescriptionFromJSON()"]
  5d44428f_a9b4_d724_cf1d_b2d016a85cae -->|calls| 5144a3f0_e76c_f588_3bd6_63c68df6cce7
  style 5144a3f0_e76c_f588_3bd6_63c68df6cce7 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.
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