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
26 lines (25 loc) • 1.21 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
*
* 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.
*/
/**
* The type of goal, if the category has a goal (TB='Target Category Balance', TBD='Target Category Balance by Date', MF='Monthly Funding', NEED='Plan Your Spending')
* @export
* @interface CategoryGoalType
*/
export interface CategoryGoalType {
}
/**
* Check if a given object implements the CategoryGoalType interface.
*/
export declare function instanceOfCategoryGoalType(value: object): boolean;
export declare function CategoryGoalTypeFromJSON(json: any): CategoryGoalType;
export declare function CategoryGoalTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CategoryGoalType;
export declare function CategoryGoalTypeToJSON(value?: CategoryGoalType | null): any;