/** * 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. */ /** * * @export * @interface BankAccount */ export interface BankAccount { /** * ID of the Bank Account * @type {number} * @memberof BankAccount */ id: number; /** * Name of the Bank Account * @type {string} * @memberof BankAccount */ name: string; /** * * @type {string} * @memberof BankAccount */ institutionId: string; /** * * @type {string} * @memberof BankAccount */ institutionName: string | null; /** * * @type {string} * @memberof BankAccount */ description: string | null; /** * * @type {string} * @memberof BankAccount */ kind?: string | null; /** * * @type {boolean} * @memberof BankAccount */ archived: boolean; /** * * @type {Date} * @memberof BankAccount */ createdAt: Date; /** * * @type {Date} * @memberof BankAccount */ updatedAt: Date; /** * * @type {boolean} * @memberof BankAccount */ _default: boolean; /** * * @type {string} * @memberof BankAccount */ type?: BankAccountTypeEnum | null; } /** * @export * @enum {string} */ export declare enum BankAccountTypeEnum { Checking = "checking", Savings = "savings", Other = "other" } /** * Check if a given object implements the BankAccount interface. */ export declare function instanceOfBankAccount(value: object): value is BankAccount; export declare function BankAccountFromJSON(json: any): BankAccount; export declare function BankAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): BankAccount; export declare function BankAccountToJSON(json: any): BankAccount; export declare function BankAccountToJSONTyped(value?: BankAccount | null, ignoreDiscriminator?: boolean): any;