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