/** * Finix API */ /** * Configures the details of how payouts get paid and credited. */ export declare class UpdatePayoutProfileGrossPayouts { /** * Configures how frequentyly **payouts** get credited. To configure a **CUSTOM** `frequency` [contact Finix Support](/guides/payouts/). */ 'frequency'?: UpdatePayoutProfileGrossPayouts.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'?: 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 UpdatePayoutProfileGrossPayouts { enum FrequencyEnum { Daily, Monthly, Custom } }