CreateSoftwareUpdateJobResponse.fromJson constructor
Implementation
factory CreateSoftwareUpdateJobResponse.fromJson(Map<String, dynamic> json) {
return CreateSoftwareUpdateJobResponse(
iotJobArn: json['IotJobArn'] as String?,
iotJobId: json['IotJobId'] as String?,
platformSoftwareVersion: json['PlatformSoftwareVersion'] as String?,
);
}