/** * My API * API documentation for my Laravel app * * 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 */ slug: string; /** * * @type {number} * @memberof CreateTagRequest */ siteId: number; /** * * @type {string} * @memberof CreateTagRequest */ type: CreateTagRequestTypeEnum; /** * * @type {string} * @memberof CreateTagRequest */ seoTitle?: string | null; /** * * @type {string} * @memberof CreateTagRequest */ seoDescription?: string | null; /** * * @type {string} * @memberof CreateTagRequest */ headerDescription?: string | null; /** * * @type {string} * @memberof CreateTagRequest */ footerDescription?: string | null; } /** * @export */ export declare const CreateTagRequestTypeEnum: { readonly NewArrival: "new_arrival"; readonly Generic: "generic"; }; export type CreateTagRequestTypeEnum = typeof CreateTagRequestTypeEnum[keyof typeof CreateTagRequestTypeEnum]; /** * 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;