/** * Finix API */ /** * The distribution of the merchant\'s credit card volume The sum of `card_volume_distribution` must be 100. */ export declare class UpdateIdentityRequestAdditionalUnderwritingDataCardVolumeDistribution { /** * The percentage of the merchant\'s business that\'s card present (between 0 and 100). */ 'cardPresentPercentage'?: number; /** * The percentage of the merchant\'s business that\'s e-commerce (between 0 and 100). */ 'ecommercePercentage'?: number; /** * The percentage of the merchant\'s business that\'s mail or telephone order (between 0 and 100). */ 'mailOrderTelephoneOrderPercentage'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }