StartServiceSoftwareUpdateResponse.fromJson constructor
Implementation
factory StartServiceSoftwareUpdateResponse.fromJson(
Map<String, dynamic> json) {
return StartServiceSoftwareUpdateResponse(
serviceSoftwareOptions: json['ServiceSoftwareOptions'] != null
? ServiceSoftwareOptions.fromJson(
json['ServiceSoftwareOptions'] as Map<String, dynamic>)
: null,
);
}