copyWithWrapped method
Implementation
ShopifySharpPaymentsRefundAttributes copyWithWrapped({
Wrapped<String?>? status,
Wrapped<String?>? acquirerReferenceNumber,
}) {
return ShopifySharpPaymentsRefundAttributes(
status: (status != null ? status.value : this.status),
acquirerReferenceNumber: (acquirerReferenceNumber != null
? acquirerReferenceNumber.value
: this.acquirerReferenceNumber),
);
}