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

ImpactResultFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the ImpactResultFromJSONTyped() function in ImpactResult.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  0df60738_0c11_4e37_235a_d7b81311415f["ImpactResultFromJSONTyped()"]
  ab39f9cd_fd8d_23b4_7db6_e9642202be93["ImpactResultFromJSON()"]
  ab39f9cd_fd8d_23b4_7db6_e9642202be93 -->|calls| 0df60738_0c11_4e37_235a_d7b81311415f
  aa9e389b_047d_f147_d6d5_65f2b37ed3e6["ImpactTargetFromJSON()"]
  0df60738_0c11_4e37_235a_d7b81311415f -->|calls| aa9e389b_047d_f147_d6d5_65f2b37ed3e6
  beaaa745_0ffd_8ade_16ce_2513eeb5a44d["BlastRadiusFromJSON()"]
  0df60738_0c11_4e37_235a_d7b81311415f -->|calls| beaaa745_0ffd_8ade_16ce_2513eeb5a44d
  style 0df60738_0c11_4e37_235a_d7b81311415f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/ImpactResult.ts lines 101–113

export function ImpactResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImpactResult {
    if (json == null) {
        return json;
    }
    return {
        
        'target': ImpactTargetFromJSON(json['target']),
        'blastRadius': BlastRadiusFromJSON(json['blastRadius']),
        'affectedFunctions': ((json['affectedFunctions'] as Array<any>).map(AffectedFunctionFromJSON)),
        'affectedFiles': ((json['affectedFiles'] as Array<any>).map(AffectedFileFromJSON)),
        'entryPointsAffected': ((json['entryPointsAffected'] as Array<any>).map(AffectedEntryPointFromJSON)),
    };
}

Domain

Subdomains

Frequently Asked Questions

What does ImpactResultFromJSONTyped() do?
ImpactResultFromJSONTyped() is a function in the typescript-sdk codebase.
What does ImpactResultFromJSONTyped() call?
ImpactResultFromJSONTyped() calls 2 function(s): BlastRadiusFromJSON, ImpactTargetFromJSON.
What calls ImpactResultFromJSONTyped()?
ImpactResultFromJSONTyped() is called by 1 function(s): ImpactResultFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free