DescribeCopyProductStatusOutput.fromJson constructor

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

Implementation

factory DescribeCopyProductStatusOutput.fromJson(Map<String, dynamic> json) {
  return DescribeCopyProductStatusOutput(
    copyProductStatus:
        (json['CopyProductStatus'] as String?)?.toCopyProductStatus(),
    statusDetail: json['StatusDetail'] as String?,
    targetProductId: json['TargetProductId'] as String?,
  );
}