CodeGraphEnvelopeMetadataFromJSONTyped() — typescript-sdk Function Reference
Architecture documentation for the CodeGraphEnvelopeMetadataFromJSONTyped() function in CodeGraphEnvelopeMetadata.ts from the typescript-sdk codebase.
Entity Profile
Dependency Diagram
graph TD 2148467c_0071_c8a6_a1b1_8db1713fa05a["CodeGraphEnvelopeMetadataFromJSONTyped()"] c0022130_cf41_62fc_1bd0_253fdceac2db["CodeGraphEnvelopeMetadata.ts"] 2148467c_0071_c8a6_a1b1_8db1713fa05a -->|defined in| c0022130_cf41_62fc_1bd0_253fdceac2db 47d91c4e_9ddc_84bd_0e0e_d1f7d2df6917["CodeGraphEnvelopeMetadataFromJSON()"] 47d91c4e_9ddc_84bd_0e0e_d1f7d2df6917 -->|calls| 2148467c_0071_c8a6_a1b1_8db1713fa05a style 2148467c_0071_c8a6_a1b1_8db1713fa05a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/models/CodeGraphEnvelopeMetadata.ts lines 59–70
export function CodeGraphEnvelopeMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CodeGraphEnvelopeMetadata {
if (json == null) {
return json;
}
return {
'analysisStartTime': json['analysisStartTime'] == null ? undefined : (new Date(json['analysisStartTime'])),
'analysisEndTime': json['analysisEndTime'] == null ? undefined : (new Date(json['analysisEndTime'])),
'fileCount': json['fileCount'] == null ? undefined : json['fileCount'],
'languages': json['languages'] == null ? undefined : json['languages'],
};
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does CodeGraphEnvelopeMetadataFromJSONTyped() do?
CodeGraphEnvelopeMetadataFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/CodeGraphEnvelopeMetadata.ts.
Where is CodeGraphEnvelopeMetadataFromJSONTyped() defined?
CodeGraphEnvelopeMetadataFromJSONTyped() is defined in src/models/CodeGraphEnvelopeMetadata.ts at line 59.
What calls CodeGraphEnvelopeMetadataFromJSONTyped()?
CodeGraphEnvelopeMetadataFromJSONTyped() is called by 1 function(s): CodeGraphEnvelopeMetadataFromJSON.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free