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

JobStatusFromJSONTyped() — typescript-sdk Function Reference

Architecture documentation for the JobStatusFromJSONTyped() function in JobStatus.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  53f37d1d_a7b7_79a8_3573_8c0beca62ebe["JobStatusFromJSONTyped()"]
  7631b867_12e8_d1db_8a91_be2f324b8463["JobStatus.ts"]
  53f37d1d_a7b7_79a8_3573_8c0beca62ebe -->|defined in| 7631b867_12e8_d1db_8a91_be2f324b8463
  63adb53b_8e4b_367d_394e_f8950b7fa6f8["JobStatusFromJSON()"]
  63adb53b_8e4b_367d_394e_f8950b7fa6f8 -->|calls| 53f37d1d_a7b7_79a8_3573_8c0beca62ebe
  style 53f37d1d_a7b7_79a8_3573_8c0beca62ebe fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/JobStatus.ts lines 74–85

export function JobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobStatus {
    if (json == null) {
        return json;
    }
    return {
        
        'status': json['status'],
        'jobId': json['jobId'],
        'retryAfter': json['retryAfter'] == null ? undefined : json['retryAfter'],
        'error': json['error'] == null ? undefined : json['error'],
    };
}

Domain

Subdomains

Frequently Asked Questions

What does JobStatusFromJSONTyped() do?
JobStatusFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/JobStatus.ts.
Where is JobStatusFromJSONTyped() defined?
JobStatusFromJSONTyped() is defined in src/models/JobStatus.ts at line 74.
What calls JobStatusFromJSONTyped()?
JobStatusFromJSONTyped() is called by 1 function(s): JobStatusFromJSON.

Analyze Your Own Codebase

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

Try Supermodel Free