/** * YNAB API Endpoints * Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com * * Generated by: OpenAPI Generator (https://openapi-generator.tech) */ /** * The type of account to create or update * @export */ export declare const SaveAccountType: { readonly Checking: "checking"; readonly Savings: "savings"; readonly Cash: "cash"; readonly CreditCard: "creditCard"; readonly OtherAsset: "otherAsset"; readonly OtherLiability: "otherLiability"; }; export type SaveAccountType = typeof SaveAccountType[keyof typeof SaveAccountType]; export declare function instanceOfSaveAccountType(value: any): boolean; export declare function SaveAccountTypeFromJSON(json: any): SaveAccountType; export declare function SaveAccountTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveAccountType; export declare function SaveAccountTypeToJSON(value?: SaveAccountType | null): any; export declare function SaveAccountTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): SaveAccountType;