/** * 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. */ import type { Tag } from './Tag'; /** * @type TransactionTagsInner * * @export */ export type TransactionTagsInner = Tag | string; export declare function TransactionTagsInnerFromJSON(json: any): TransactionTagsInner; export declare function TransactionTagsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionTagsInner; export declare function TransactionTagsInnerToJSON(json: any): any; export declare function TransactionTagsInnerToJSONTyped(value?: TransactionTagsInner | null, ignoreDiscriminator?: boolean): any;