copyWithWrapped method
Implementation
CreditRelayRefreshRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? relayToken,
Wrapped<enums.ReportType>? reportType,
Wrapped<String?>? webhook}) {
return CreditRelayRefreshRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
relayToken: (relayToken != null ? relayToken.value : this.relayToken),
reportType: (reportType != null ? reportType.value : this.reportType),
webhook: (webhook != null ? webhook.value : this.webhook));
}