import { APIResource } from "../../core/resource.js"; import * as ProgramsAPI from "../programs.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class Programs extends APIResource { /** * Simulates a [Program](#programs) being created in your group. By default, your * group has one program called Commercial Banking. Note that when your group * operates more than one program, `program_id` is a required field when creating * accounts. * * @example * ```ts * const program = await client.simulations.programs.create({ * name: 'For Benefit Of', * }); * ``` */ create(body: ProgramCreateParams, options?: RequestOptions): APIPromise; } export interface ProgramCreateParams { /** * The name of the program being added. */ name: string; /** * The bank for the program's accounts, defaults to First Internet Bank. * * - `core_bank` - Core Bank * - `first_internet_bank` - First Internet Bank of Indiana * - `grasshopper_bank` - Grasshopper Bank * - `twin_city_bank` - Twin City Bank */ bank?: 'core_bank' | 'first_internet_bank' | 'grasshopper_bank' | 'twin_city_bank'; /** * The maximum extendable credit of the program being added. */ lending_maximum_extendable_credit?: number; /** * The identifier of the Account the Program should be added to is for. */ reserve_account_id?: string; [k: string]: unknown; } export declare namespace Programs { export { type ProgramCreateParams as ProgramCreateParams }; } //# sourceMappingURL=programs.d.ts.map