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 eca8baa8_ad1a_a4aa_7d1c_f4766bf5e36d["CodeGraphEnvelopeMetadataFromJSONTyped()"] ab3b11bf_f151_b334_ff05_9c3276e464a4["CodeGraphEnvelopeMetadataFromJSON()"] ab3b11bf_f151_b334_ff05_9c3276e464a4 -->|calls| eca8baa8_ad1a_a4aa_7d1c_f4766bf5e36d style eca8baa8_ad1a_a4aa_7d1c_f4766bf5e36d 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
Called By
Source
Frequently Asked Questions
What does CodeGraphEnvelopeMetadataFromJSONTyped() do?
CodeGraphEnvelopeMetadataFromJSONTyped() is a function in the typescript-sdk codebase.
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