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
28 lines (27 loc) • 1.16 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 date format setting for the budget. In some cases the format will not be available and will be specified as null.
* @export
* @interface DateFormat
*/
export interface DateFormat {
/**
*
* @type {string}
* @memberof DateFormat
*/
format: string;
}
/**
* Check if a given object implements the DateFormat interface.
*/
export declare function instanceOfDateFormat(value: object): value is DateFormat;
export declare function DateFormatFromJSON(json: any): DateFormat;
export declare function DateFormatFromJSONTyped(json: any, ignoreDiscriminator: boolean): DateFormat;
export declare function DateFormatToJSON(json: any): DateFormat;
export declare function DateFormatToJSONTyped(value?: DateFormat | null, ignoreDiscriminator?: boolean): any;