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.29 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
*
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
import type { ExistingTransaction } from './ExistingTransaction';
/**
*
* @export
* @interface PutTransactionWrapper
*/
export interface PutTransactionWrapper {
/**
*
* @type {ExistingTransaction}
* @memberof PutTransactionWrapper
*/
transaction: ExistingTransaction;
}
/**
* Check if a given object implements the PutTransactionWrapper interface.
*/
export declare function instanceOfPutTransactionWrapper(value: object): value is PutTransactionWrapper;
export declare function PutTransactionWrapperFromJSON(json: any): PutTransactionWrapper;
export declare function PutTransactionWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutTransactionWrapper;
export declare function PutTransactionWrapperToJSON(json: any): PutTransactionWrapper;
export declare function PutTransactionWrapperToJSONTyped(value?: PutTransactionWrapper | null, ignoreDiscriminator?: boolean): any;