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

29 lines (28 loc) 1.31 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) */ import type { PayeeLocationResponseData } from './PayeeLocationResponseData'; /** * * @export * @interface PayeeLocationResponse */ export interface PayeeLocationResponse { /** * * @type {PayeeLocationResponseData} * @memberof PayeeLocationResponse */ data: PayeeLocationResponseData; } /** * Check if a given object implements the PayeeLocationResponse interface. */ export declare function instanceOfPayeeLocationResponse(value: object): value is PayeeLocationResponse; export declare function PayeeLocationResponseFromJSON(json: any): PayeeLocationResponse; export declare function PayeeLocationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PayeeLocationResponse; export declare function PayeeLocationResponseToJSON(json: any): PayeeLocationResponse; export declare function PayeeLocationResponseToJSONTyped(value?: PayeeLocationResponse | null, ignoreDiscriminator?: boolean): any;