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

BlastRadiusFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the BlastRadiusFromJSONTyped() function in BlastRadius.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  80d5bfab_9e9f_baf0_4c16_73ac0cd2e1c5["BlastRadiusFromJSONTyped()"]
  beaaa745_0ffd_8ade_16ce_2513eeb5a44d["BlastRadiusFromJSON()"]
  beaaa745_0ffd_8ade_16ce_2513eeb5a44d -->|calls| 80d5bfab_9e9f_baf0_4c16_73ac0cd2e1c5
  style 80d5bfab_9e9f_baf0_4c16_73ac0cd2e1c5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/BlastRadius.ts lines 88–101

export function BlastRadiusFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlastRadius {
    if (json == null) {
        return json;
    }
    return {
        
        'directDependents': json['directDependents'],
        'transitiveDependents': json['transitiveDependents'],
        'affectedFiles': json['affectedFiles'],
        'affectedDomains': json['affectedDomains'] == null ? undefined : json['affectedDomains'],
        'riskScore': json['riskScore'],
        'riskFactors': json['riskFactors'] == null ? undefined : json['riskFactors'],
    };
}

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free