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

ClassificationStatsFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the ClassificationStatsFromJSONTyped() function in ClassificationStats.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  a2448b82_5f40_9cf2_99d5_3298bf9aeae1["ClassificationStatsFromJSONTyped()"]
  8bf4bfcf_b132_c5c3_3ee8_71292133a332["ClassificationStatsFromJSON()"]
  8bf4bfcf_b132_c5c3_3ee8_71292133a332 -->|calls| a2448b82_5f40_9cf2_99d5_3298bf9aeae1
  style a2448b82_5f40_9cf2_99d5_3298bf9aeae1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/ClassificationStats.ts lines 126–146

export function ClassificationStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClassificationStats {
    if (json == null) {
        return json;
    }
    return {
        
        'nodeCount': json['nodeCount'],
        'relationshipCount': json['relationshipCount'],
        'nodeTypes': json['nodeTypes'],
        'relationshipTypes': json['relationshipTypes'],
        'domainCount': json['domainCount'],
        'subdomainCount': json['subdomainCount'],
        'assignedFileCount': json['assignedFileCount'],
        'assignedFunctionCount': json['assignedFunctionCount'],
        'assignedClassCount': json['assignedClassCount'],
        'fileAssignments': json['fileAssignments'],
        'functionAssignments': json['functionAssignments'],
        'unassignedFunctions': json['unassignedFunctions'],
        'classAssignments': json['classAssignments'],
    };
}

Domain

Subdomains

Frequently Asked Questions

What does ClassificationStatsFromJSONTyped() do?
ClassificationStatsFromJSONTyped() is a function in the typescript-sdk codebase.
What calls ClassificationStatsFromJSONTyped()?
ClassificationStatsFromJSONTyped() is called by 1 function(s): ClassificationStatsFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free