ynab
Version:
Official JavaScript client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.76.0
32 lines (31 loc) • 1.44 kB
TypeScript
/**
* 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
* @export
*/
export declare const AccountType: {
readonly Checking: "checking";
readonly Savings: "savings";
readonly Cash: "cash";
readonly CreditCard: "creditCard";
readonly LineOfCredit: "lineOfCredit";
readonly OtherAsset: "otherAsset";
readonly OtherLiability: "otherLiability";
readonly Mortgage: "mortgage";
readonly AutoLoan: "autoLoan";
readonly StudentLoan: "studentLoan";
readonly PersonalLoan: "personalLoan";
readonly MedicalDebt: "medicalDebt";
readonly OtherDebt: "otherDebt";
};
export type AccountType = typeof AccountType[keyof typeof AccountType];
export declare function instanceOfAccountType(value: any): boolean;
export declare function AccountTypeFromJSON(json: any): AccountType;
export declare function AccountTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountType;
export declare function AccountTypeToJSON(value?: AccountType | null): any;
export declare function AccountTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AccountType;