/** * 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 PostPayee */ export interface PostPayee { /** * The name of the payee. * @type {string} * @memberof PostPayee */ name: string; } /** * Check if a given object implements the PostPayee interface. */ export declare function instanceOfPostPayee(value: object): value is PostPayee; export declare function PostPayeeFromJSON(json: any): PostPayee; export declare function PostPayeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostPayee; export declare function PostPayeeToJSON(json: any): PostPayee; export declare function PostPayeeToJSONTyped(value?: PostPayee | null, ignoreDiscriminator?: boolean): any;