CreateReturnShippingLabelResult.fromJson constructor
Implementation
factory CreateReturnShippingLabelResult.fromJson(Map<String, dynamic> json) {
return CreateReturnShippingLabelResult(
status: (json['Status'] as String?)?.toShippingLabelStatus(),
);
}