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 b04482f9_1254_a261_c269_acadd9a6d3bb["JobStatusFromJSONTyped()"] 92acf4ec_ffe3_bcd5_44eb_9497550d4cf3["JobStatusFromJSON()"] 92acf4ec_ffe3_bcd5_44eb_9497550d4cf3 -->|calls| b04482f9_1254_a261_c269_acadd9a6d3bb style b04482f9_1254_a261_c269_acadd9a6d3bb 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
Called By
Source
Frequently Asked Questions
What does JobStatusFromJSONTyped() do?
JobStatusFromJSONTyped() is a function in the typescript-sdk codebase.
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