CancelElasticsearchServiceSoftwareUpdateResponse.fromJson constructor

CancelElasticsearchServiceSoftwareUpdateResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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