/** * Finix API */ import { PayoutProfileGrossFees } from './payoutProfileGrossFees'; import { PayoutProfileGrossPayouts } from './payoutProfileGrossPayouts'; /** * Details how `Payout Profiles` with type **GROSS** are configured. */ export declare class PayoutProfileGross { 'fees'?: PayoutProfileGrossFees; 'payouts'?: PayoutProfileGrossPayouts; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }