CreateReturnShippingLabelResult.fromJson constructor

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

Implementation

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