Inttegro TypeScript SDK - v8.2.0
    Preparing search index...

    Interface OrderPayoutSettings

    Order-specific payout destination configuration

    interface OrderPayoutSettings {
        destination?: {
            financialAccountData?: {
                bankAccount?: BankAccountConfig | null;
                doshAccount?: Record<string, unknown> | null;
                type: FinancialAccountType;
                wallet?:
                    | {
                        mobileMoney?: { accountNumber: string; network: MobileMoneyNetwork };
                        type: "mobile_money";
                    }
                    | null;
            };
            financialAccountId?: string;
        };
        enableFx?: boolean;
    }
    Index
    destination?: {
        financialAccountData?: {
            bankAccount?: BankAccountConfig | null;
            doshAccount?: Record<string, unknown> | null;
            type: FinancialAccountType;
            wallet?:
                | {
                    mobileMoney?: { accountNumber: string; network: MobileMoneyNetwork };
                    type: "mobile_money";
                }
                | null;
        };
        financialAccountId?: string;
    }

    Payout destination for this order

    Type Declaration

    • OptionalfinancialAccountData?: {
          bankAccount?: BankAccountConfig | null;
          doshAccount?: Record<string, unknown> | null;
          type: FinancialAccountType;
          wallet?:
              | {
                  mobileMoney?: { accountNumber: string; network: MobileMoneyNetwork };
                  type: "mobile_money";
              }
              | null;
      }

      Inline financial account details for payout destination

    • OptionalfinancialAccountId?: string

      ID of an existing financial account to receive payout

    enableFx?: boolean

    Whether to enable foreign exchange conversion for this order's payout