/** * 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 CreateTagRequest */ export interface CreateTagRequest { /** * * @type {string} * @memberof CreateTagRequest */ 'name': string; /** * * @type {string} * @memberof CreateTagRequest */ 'description'?: string | null; /** * * @type {string} * @memberof CreateTagRequest */ 'resourceId'?: string | null; } /** * Check if a given object implements the CreateTagRequest interface. */ export declare function instanceOfCreateTagRequest(value: object): value is CreateTagRequest; export declare function CreateTagRequestFromJSON(json: any): CreateTagRequest; export declare function CreateTagRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTagRequest; export declare function CreateTagRequestToJSON(json: any): CreateTagRequest; export declare function CreateTagRequestToJSONTyped(value?: CreateTagRequest | null, ignoreDiscriminator?: boolean): any;