/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface RecurringTransactionAllOfRecurrenceAttributes */ export interface RecurringTransactionAllOfRecurrenceAttributes { /** * * @type {string} * @memberof RecurringTransactionAllOfRecurrenceAttributes */ periodicity: RecurringTransactionAllOfRecurrenceAttributesPeriodicityEnum; } /** * @export * @enum {string} */ export declare enum RecurringTransactionAllOfRecurrenceAttributesPeriodicityEnum { Monthly = "monthly", Yearly = "yearly", Weekly = "weekly", Biweekly = "biweekly", Bimonthly = "bimonthly", Trimonthly = "trimonthly" } /** * Check if a given object implements the RecurringTransactionAllOfRecurrenceAttributes interface. */ export declare function instanceOfRecurringTransactionAllOfRecurrenceAttributes(value: object): value is RecurringTransactionAllOfRecurrenceAttributes; export declare function RecurringTransactionAllOfRecurrenceAttributesFromJSON(json: any): RecurringTransactionAllOfRecurrenceAttributes; export declare function RecurringTransactionAllOfRecurrenceAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecurringTransactionAllOfRecurrenceAttributes; export declare function RecurringTransactionAllOfRecurrenceAttributesToJSON(json: any): RecurringTransactionAllOfRecurrenceAttributes; export declare function RecurringTransactionAllOfRecurrenceAttributesToJSONTyped(value?: RecurringTransactionAllOfRecurrenceAttributes | null, ignoreDiscriminator?: boolean): any;