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

UnassignedFunctionToJSON() — typescript-sdk Function Reference

Architecture documentation for the UnassignedFunctionToJSON() function in UnassignedFunction.ts from the typescript-sdk codebase.

Entity Profile

Relationship Graph

Source Code

src/models/UnassignedFunction.ts lines 60–69

export function UnassignedFunctionToJSON(value?: UnassignedFunction | null): any {
    if (value == null) {
        return value;
    }
    return {
        
        'functionId': value['functionId'],
        'reason': value['reason'],
    };
}

Domain

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free