/** * Finix API */ import { ListLinks } from './listLinks'; import { PageCursor } from './pageCursor'; import { PayoutProfilesListEmbedded } from './payoutProfilesListEmbedded'; /** * List of `Payout Profiles`. */ export declare class PayoutProfilesList { 'embedded'?: PayoutProfilesListEmbedded; 'links'?: ListLinks; 'page'?: PageCursor; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }