/** * 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 MoneyMovementBase */ export interface MoneyMovementBase { /** * * @type {string} * @memberof MoneyMovementBase */ id: string; /** * The month of the money movement in ISO format (e.g. 2024-01-01) * @type {string} * @memberof MoneyMovementBase */ month?: string | null; /** * The date/time the money movement was processed on the server in ISO format (e.g. 2024-01-01T12:00:00Z) * @type {string} * @memberof MoneyMovementBase */ moved_at?: string | null; /** * * @type {string} * @memberof MoneyMovementBase */ note?: string | null; /** * The id of the money movement group this movement belongs to * @type {string} * @memberof MoneyMovementBase */ money_movement_group_id?: string | null; /** * The id of the user who performed the money movement * @type {string} * @memberof MoneyMovementBase */ performed_by_user_id?: string | null; /** * The id of the category the money was moved from * @type {string} * @memberof MoneyMovementBase */ from_category_id?: string | null; /** * The id of the category the money was moved to * @type {string} * @memberof MoneyMovementBase */ to_category_id?: string | null; /** * The amount of the money movement in milliunits format * @type {number} * @memberof MoneyMovementBase */ amount: number; } /** * Check if a given object implements the MoneyMovementBase interface. */ export declare function instanceOfMoneyMovementBase(value: object): value is MoneyMovementBase; export declare function MoneyMovementBaseFromJSON(json: any): MoneyMovementBase; export declare function MoneyMovementBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyMovementBase; export declare function MoneyMovementBaseToJSON(json: any): MoneyMovementBase; export declare function MoneyMovementBaseToJSONTyped(value?: MoneyMovementBase | null, ignoreDiscriminator?: boolean): any;