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
35 lines (34 loc) • 1.44 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 { NewTransaction } from './NewTransaction';
/**
*
* @export
* @interface PostTransactionsWrapper
*/
export interface PostTransactionsWrapper {
/**
*
* @type {NewTransaction}
* @memberof PostTransactionsWrapper
*/
transaction?: NewTransaction;
/**
*
* @type {Array<NewTransaction>}
* @memberof PostTransactionsWrapper
*/
transactions?: Array<NewTransaction>;
}
/**
* Check if a given object implements the PostTransactionsWrapper interface.
*/
export declare function instanceOfPostTransactionsWrapper(value: object): value is PostTransactionsWrapper;
export declare function PostTransactionsWrapperFromJSON(json: any): PostTransactionsWrapper;
export declare function PostTransactionsWrapperFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostTransactionsWrapper;
export declare function PostTransactionsWrapperToJSON(json: any): PostTransactionsWrapper;
export declare function PostTransactionsWrapperToJSONTyped(value?: PostTransactionsWrapper | null, ignoreDiscriminator?: boolean): any;