/** * Finix API */ /** * Configures and details how payouts get paid and credited. */ export declare class PayoutProfileGrossPayouts { /** * Configures how frequentyly *payouts* get credited. To configure a **CUSTOM** `frequency` [contact Finix Support](/guides/payouts/). */ 'frequency'?: PayoutProfileGrossPayouts.FrequencyEnum | string; /** * The `id` of the `Payment Instrument`that *payouts* will get credited to. */ 'paymentInstrumentId'?: string; /** * Configures how quickly and which payment `rail` will be used to credit *payouts*. */ 'rail'?: PayoutProfileGrossPayouts.RailEnum | string; /** * Include a number of `submission_delay_days` to delay when `funding_transfers` for *payouts* will get submitted to credit (in days) the `payment_instrument_id`. */ 'submissionDelayDays'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace PayoutProfileGrossPayouts { enum FrequencyEnum { Daily, Monthly, Custom } enum RailEnum { NextDayAch, SameDayAch } }