/** * Finix API */ /** * Merchant\'s distribution of credit card volume by business type. Sum of `volume_distribution_by_business_type` must be 100. */ export declare class UpdateIdentityRequestAdditionalUnderwritingDataVolumeDistributionByBusinessType { /** * The percentage of the merchant\'s volume that isn\'t represented by the previous fields (between 0 and 100). */ 'otherVolumePercentage'?: number; /** * Merchant\'s percentage of volume that is consumer to consumer (between 0 and 100). */ 'consumerToConsumerVolumePercentage'?: number; /** * The percentage of the merchant\'s volume that\'s business to consumer (between 0 and 100). */ 'businessToConsumerVolumePercentage'?: number; /** * The percentage of the merchant\'s volume that\'s business to business (between 0 and 100). */ 'businessToBusinessVolumePercentage'?: number; /** * The percentage the merchant\'s volume that\'s person to person (between 0 and 100). */ 'personToPersonVolumePercentage'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }