copyWithWrapped method
Implementation
TransferRefundGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? refundId}) {
return TransferRefundGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
refundId: (refundId != null ? refundId.value : this.refundId));
}