DescribeClusterOperationResponse.fromJson constructor

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

Implementation

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