/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 CreateBookmarkRequestTagsInnerAnyOf1 */ export interface CreateBookmarkRequestTagsInnerAnyOf1 { /** * * @type {string} * @memberof CreateBookmarkRequestTagsInnerAnyOf1 */ 'name': string; } /** * Check if a given object implements the CreateBookmarkRequestTagsInnerAnyOf1 interface. */ export declare function instanceOfCreateBookmarkRequestTagsInnerAnyOf1(value: object): value is CreateBookmarkRequestTagsInnerAnyOf1; export declare function CreateBookmarkRequestTagsInnerAnyOf1FromJSON(json: any): CreateBookmarkRequestTagsInnerAnyOf1; export declare function CreateBookmarkRequestTagsInnerAnyOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBookmarkRequestTagsInnerAnyOf1; export declare function CreateBookmarkRequestTagsInnerAnyOf1ToJSON(json: any): CreateBookmarkRequestTagsInnerAnyOf1; export declare function CreateBookmarkRequestTagsInnerAnyOf1ToJSONTyped(value?: CreateBookmarkRequestTagsInnerAnyOf1 | null, ignoreDiscriminator?: boolean): any;