/** * Finix API */ import { CreateIdentityRequestAdditionalUnderwritingDataCardVolumeDistribution } from './createIdentityRequestAdditionalUnderwritingDataCardVolumeDistribution'; import { CreateIdentityRequestAdditionalUnderwritingDataVolumeDistributionByBusinessType } from './createIdentityRequestAdditionalUnderwritingDataVolumeDistributionByBusinessType'; /** * Addition underwriting details required to verify `Identities`. */ export declare class CreateIdentityRequestAdditionalUnderwritingData { /** * The approximate annual ACH sales expected to be processed (in cents) by this merchant (max 10 characters). */ 'annualAchVolume'?: number; /** * The approximate average ACH sale amount (in cents) for this merchant. */ 'averageAchTransferAmount'?: number; /** * The average credit card sale amount (in cents) for this merchant. */ 'averageCardTransferAmount'?: number; /** * Description of this merchant\'s business (max 200 characters). */ 'businessDescription'?: string; 'cardVolumeDistribution'?: CreateIdentityRequestAdditionalUnderwritingDataCardVolumeDistribution; /** * Sets if this merchant has consented and accepted to a credit check. */ 'creditCheckAllowed'?: boolean; /** * The IP address of the merchant when they consented to a credit check (e.g., 42.1.1.113 ). */ 'creditCheckIpAddress'?: string; /** * A timestamp of when this merchant consented to a credit check (e.g., 2021-04-28T16:42:55Z). */ 'creditCheckTimestamp'?: string; /** * The details of the browser that was used when this merchant consented to a credit check (e.g., Mozilla 5.0 (Macintosh; Intel Mac OS X 10 _14_6)). */ 'creditCheckUserAgent'?: string; /** * Sets whether this merchant has accepted the terms and conditions of the merchant agreement. */ 'merchantAgreementAccepted'?: boolean; /** * IP address of the merchant when this merchant accepted the merchant agreement (e.g., 42.1.1.113). */ 'merchantAgreementIpAddress'?: string; /** * Sets if this merchant has consented and accepted to a credit check. */ 'merchantAgreementTimestamp'?: string; /** * The details of the browser that was used when this merchant accepted Finix\'s Terms of Service (e.g., Mozilla 5.0 (Macintosh; Intel Mac OS X 10 _14_6)). */ 'merchantAgreementUserAgent'?: string; /** * The details of the browser that was used when this merchant consented to a credit check (e.g., Mozilla 5.0 (Macintosh; Intel Mac OS X 10 _14_6)). */ 'refundPolicy'?: CreateIdentityRequestAdditionalUnderwritingData.RefundPolicyEnum | string; 'volumeDistributionByBusinessType'?: CreateIdentityRequestAdditionalUnderwritingDataVolumeDistributionByBusinessType; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CreateIdentityRequestAdditionalUnderwritingData { enum RefundPolicyEnum { NoRefunds, MerchandiseExchangeOnly, _30Days } }