/** * Finix API */ /** * Details how `Payout Profiles` with type **NET** are configured. */ export declare class PayoutProfileNet { /** * Configures how frequentyly fees and payouts get credited. To configure a **CUSTOM** `frequency` [contact Finix Support](/guides/payouts/). */ 'frequency'?: PayoutProfileNet.FrequencyEnum | string; /** * The `id` of the `Payment Instrument` that payouts and fees get credited to and debited from. */ 'paymentInstrumentId'?: string; /** * Configures how quickly and which payment `rail` will be used to debit fees and credit payouts. */ 'rail'?: PayoutProfileNet.RailEnum | string; /** * Include a number of `submission_delay_days` to delay when `funding_transfers` for both payouts and fees will get submitted (in days) to debit/credit 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 PayoutProfileNet { enum FrequencyEnum { Daily, Monthly, Custom } enum RailEnum { NextDayAch, SameDayAch } }