UNPKG

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

52 lines (51 loc) 1.59 kB
/** * 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) */ /** * * @export * @interface PayeeLocation */ export interface PayeeLocation { /** * * @type {string} * @memberof PayeeLocation */ id: string; /** * * @type {string} * @memberof PayeeLocation */ payee_id: string; /** * * @type {string} * @memberof PayeeLocation */ latitude: string; /** * * @type {string} * @memberof PayeeLocation */ longitude: string; /** * Whether or not the payee location has been deleted. Deleted payee locations will only be included in delta requests. * @type {boolean} * @memberof PayeeLocation */ deleted: boolean; } /** * Check if a given object implements the PayeeLocation interface. */ export declare function instanceOfPayeeLocation(value: object): value is PayeeLocation; export declare function PayeeLocationFromJSON(json: any): PayeeLocation; export declare function PayeeLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PayeeLocation; export declare function PayeeLocationToJSON(json: any): PayeeLocation; export declare function PayeeLocationToJSONTyped(value?: PayeeLocation | null, ignoreDiscriminator?: boolean): any;