/** * 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 ScheduledSubTransactionBase */ export interface ScheduledSubTransactionBase { /** * * @type {string} * @memberof ScheduledSubTransactionBase */ id: string; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ scheduled_transaction_id: string; /** * The scheduled subtransaction amount in milliunits format * @type {number} * @memberof ScheduledSubTransactionBase */ amount: number; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ memo?: string | null; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ payee_id?: string | null; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ payee_name?: string | null; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ category_id?: string | null; /** * * @type {string} * @memberof ScheduledSubTransactionBase */ category_name?: string | null; /** * If a transfer, the account_id which the scheduled subtransaction transfers to * @type {string} * @memberof ScheduledSubTransactionBase */ transfer_account_id?: string | null; /** * Whether or not the scheduled subtransaction has been deleted. Deleted scheduled subtransactions will only be included in delta requests. * @type {boolean} * @memberof ScheduledSubTransactionBase */ deleted: boolean; } /** * Check if a given object implements the ScheduledSubTransactionBase interface. */ export declare function instanceOfScheduledSubTransactionBase(value: object): value is ScheduledSubTransactionBase; export declare function ScheduledSubTransactionBaseFromJSON(json: any): ScheduledSubTransactionBase; export declare function ScheduledSubTransactionBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduledSubTransactionBase; export declare function ScheduledSubTransactionBaseToJSON(json: any): ScheduledSubTransactionBase; export declare function ScheduledSubTransactionBaseToJSONTyped(value?: ScheduledSubTransactionBase | null, ignoreDiscriminator?: boolean): any;