DomainSummaryFromJSONTyped() — typescript-sdk Function Reference
Architecture documentation for the DomainSummaryFromJSONTyped() function in DomainSummary.ts from the typescript-sdk codebase.
Entity Profile
Dependency Diagram
graph TD f11f87c4_49f1_1c0a_45c9_b0c2539f0f95["DomainSummaryFromJSONTyped()"] 0e7b06d9_549b_6760_b289_12a4e8b4f05d["DomainSummaryFromJSON()"] 0e7b06d9_549b_6760_b289_12a4e8b4f05d -->|calls| f11f87c4_49f1_1c0a_45c9_b0c2539f0f95 style f11f87c4_49f1_1c0a_45c9_b0c2539f0f95 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/models/DomainSummary.ts lines 77–89
export function DomainSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainSummary {
if (json == null) {
return json;
}
return {
'name': json['name'],
'descriptionSummary': json['descriptionSummary'],
'keyFiles': json['keyFiles'],
'responsibilities': json['responsibilities'],
'subdomains': ((json['subdomains'] as Array<any>).map(SubdomainSummaryFromJSON)),
};
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does DomainSummaryFromJSONTyped() do?
DomainSummaryFromJSONTyped() is a function in the typescript-sdk codebase.
What calls DomainSummaryFromJSONTyped()?
DomainSummaryFromJSONTyped() is called by 1 function(s): DomainSummaryFromJSON.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free