PodSchedulingContext.fromJson constructor
Creates a PodSchedulingContext from JSON data.
Implementation
factory PodSchedulingContext.fromJson(Map<String, dynamic> json) {
final tempApiVersionJson = json['apiVersion'];
final tempKindJson = json['kind'];
final tempMetadataJson = json['metadata'];
final tempSpecJson = json['spec'];
final tempStatusJson = json['status'];
final String? tempApiVersion = tempApiVersionJson;
final String? tempKind = tempKindJson;
final ObjectMeta? tempMetadata =
tempMetadataJson != null ? ObjectMeta.fromJson(tempMetadataJson) : null;
final PodSchedulingContextSpec tempSpec =
PodSchedulingContextSpec.fromJson(tempSpecJson);
final PodSchedulingContextStatus? tempStatus = tempStatusJson != null
? PodSchedulingContextStatus.fromJson(tempStatusJson)
: null;
return PodSchedulingContext(
apiVersion: tempApiVersion,
kind: tempKind,
metadata: tempMetadata,
spec: tempSpec,
status: tempStatus,
);
}