/** * Finix API */ import { UpdatePayoutProfileGross } from './updatePayoutProfileGross'; import { UpdatePayoutProfileNet } from './updatePayoutProfileNet'; /** * */ export declare class UpdatePayoutProfile { 'gross'?: UpdatePayoutProfileGross | null; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * Configures how fees are calculated and billed from payouts. For more infromation, see [Payout Types](/guides/payouts/#payout-types). */ 'type'?: UpdatePayoutProfile.TypeEnum | string; 'net'?: UpdatePayoutProfileNet | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace UpdatePayoutProfile { enum TypeEnum { Custom, Net, Gross } }