/** * 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 UpdateTagRequest */ export interface UpdateTagRequest { /** * * @type {string} * @memberof UpdateTagRequest */ name: string; /** * * @type {string} * @memberof UpdateTagRequest */ slug: string; /** * * @type {string} * @memberof UpdateTagRequest */ type: UpdateTagRequestTypeEnum; /** * * @type {string} * @memberof UpdateTagRequest */ seoTitle?: string | null; /** * * @type {string} * @memberof UpdateTagRequest */ seoDescription?: string | null; /** * * @type {string} * @memberof UpdateTagRequest */ headerDescription?: string | null; /** * * @type {string} * @memberof UpdateTagRequest */ footerDescription?: string | null; } /** * @export */ export declare const UpdateTagRequestTypeEnum: { readonly NewArrival: "new_arrival"; readonly Generic: "generic"; }; export type UpdateTagRequestTypeEnum = typeof UpdateTagRequestTypeEnum[keyof typeof UpdateTagRequestTypeEnum]; /** * Check if a given object implements the UpdateTagRequest interface. */ export declare function instanceOfUpdateTagRequest(value: object): value is UpdateTagRequest; export declare function UpdateTagRequestFromJSON(json: any): UpdateTagRequest; export declare function UpdateTagRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTagRequest; export declare function UpdateTagRequestToJSON(json: any): UpdateTagRequest; export declare function UpdateTagRequestToJSONTyped(value?: UpdateTagRequest | null, ignoreDiscriminator?: boolean): any;