copyWith method
PartnerCustomerCreateRequest
copyWith({
- String? clientId,
- String? secret,
- String? companyName,
- bool? isDiligenceAttested,
- List<
Products> ? products, - bool? createLinkCustomization,
- String? logo,
- String? legalEntityName,
- String? website,
- String? applicationName,
- PartnerEndCustomerTechnicalContact? technicalContact,
- PartnerEndCustomerBillingContact? billingContact,
- PartnerEndCustomerAddress? address,
- bool? isBankAddendumCompleted,
- PartnerEndCustomerAssetsUnderManagement? assetsUnderManagement,
Implementation
PartnerCustomerCreateRequest copyWith(
{String? clientId,
String? secret,
String? companyName,
bool? isDiligenceAttested,
List<enums.Products>? products,
bool? createLinkCustomization,
String? logo,
String? legalEntityName,
String? website,
String? applicationName,
PartnerEndCustomerTechnicalContact? technicalContact,
PartnerEndCustomerBillingContact? billingContact,
PartnerEndCustomerAddress? address,
bool? isBankAddendumCompleted,
PartnerEndCustomerAssetsUnderManagement? assetsUnderManagement}) {
return PartnerCustomerCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
companyName: companyName ?? this.companyName,
isDiligenceAttested: isDiligenceAttested ?? this.isDiligenceAttested,
products: products ?? this.products,
createLinkCustomization:
createLinkCustomization ?? this.createLinkCustomization,
logo: logo ?? this.logo,
legalEntityName: legalEntityName ?? this.legalEntityName,
website: website ?? this.website,
applicationName: applicationName ?? this.applicationName,
technicalContact: technicalContact ?? this.technicalContact,
billingContact: billingContact ?? this.billingContact,
address: address ?? this.address,
isBankAddendumCompleted:
isBankAddendumCompleted ?? this.isBankAddendumCompleted,
assetsUnderManagement:
assetsUnderManagement ?? this.assetsUnderManagement);
}