/** * 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 { PostPayee } from './PostPayee'; /** * * @export * @interface PostPayeeWrapper */ export interface PostPayeeWrapper { /** * * @type {PostPayee} * @memberof PostPayeeWrapper */ payee: PostPayee; } /** * Check if a given object implements the PostPayeeWrapper interface. */ export declare function instanceOfPostPayeeWrapper(value: object): value is PostPayeeWrapper; export declare function PostPayeeWrapperFromJSON(json: any): PostPayeeWrapper; export declare function PostPayeeWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostPayeeWrapper; export declare function PostPayeeWrapperToJSON(json: any): PostPayeeWrapper; export declare function PostPayeeWrapperToJSONTyped(value?: PostPayeeWrapper | null, ignoreDiscriminator?: boolean): any;