/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Schema for creating or updating a bank account * @export * @interface BankAccountInput */ export interface BankAccountInput { /** * Name of the Bank Account * @type {string} * @memberof BankAccountInput */ name: string; /** * * @type {string} * @memberof BankAccountInput */ institutionId?: string; /** * * @type {string} * @memberof BankAccountInput */ description?: string | null; /** * * @type {boolean} * @memberof BankAccountInput */ archived?: boolean; /** * * @type {boolean} * @memberof BankAccountInput */ _default?: boolean; /** * * @type {string} * @memberof BankAccountInput */ type?: BankAccountInputTypeEnum; } /** * @export * @enum {string} */ export declare enum BankAccountInputTypeEnum { Checking = "checking", Savings = "savings", Other = "other" } /** * Check if a given object implements the BankAccountInput interface. */ export declare function instanceOfBankAccountInput(value: object): value is BankAccountInput; export declare function BankAccountInputFromJSON(json: any): BankAccountInput; export declare function BankAccountInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): BankAccountInput; export declare function BankAccountInputToJSON(json: any): BankAccountInput; export declare function BankAccountInputToJSONTyped(value?: BankAccountInput | null, ignoreDiscriminator?: boolean): any;