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

FunctionDescriptionToJSON() — typescript-sdk Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  5cfed4c3_2be6_ec1e_8da0_105d7a98ce2a["FunctionDescriptionToJSON()"]
  6f8892c3_e0d0_81c8_5f2c_2e0fd6696786["FunctionDescription.ts"]
  5cfed4c3_2be6_ec1e_8da0_105d7a98ce2a -->|defined in| 6f8892c3_e0d0_81c8_5f2c_2e0fd6696786
  style 5cfed4c3_2be6_ec1e_8da0_105d7a98ce2a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/FunctionDescription.ts lines 67–77

export function FunctionDescriptionToJSON(value?: FunctionDescription | null): any {
    if (value == null) {
        return value;
    }
    return {
        
        'functionId': value['functionId'],
        'descriptionSummary': value['descriptionSummary'],
        'domainName': value['domainName'],
    };
}

Domain

Subdomains

Frequently Asked Questions

What does FunctionDescriptionToJSON() do?
FunctionDescriptionToJSON() is a function in the typescript-sdk codebase, defined in src/models/FunctionDescription.ts.
Where is FunctionDescriptionToJSON() defined?
FunctionDescriptionToJSON() is defined in src/models/FunctionDescription.ts at line 67.

Analyze Your Own Codebase

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

Try Supermodel Free