/** * 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. */ import type { SiteLiteResource } from './SiteLiteResource'; import type { DescriptionResource } from './DescriptionResource'; import type { SEOResource } from './SEOResource'; /** * * @export * @interface TagResource */ export interface TagResource { /** * * @type {number} * @memberof TagResource */ id: number; /** * * @type {string} * @memberof TagResource */ name: string; /** * * @type {string} * @memberof TagResource */ slug: string; /** * * @type {string} * @memberof TagResource */ type: string; /** * * @type {SiteLiteResource} * @memberof TagResource */ site: SiteLiteResource | null; /** * * @type {SEOResource} * @memberof TagResource */ seo: SEOResource | null; /** * * @type {DescriptionResource} * @memberof TagResource */ description: DescriptionResource | null; } /** * Check if a given object implements the TagResource interface. */ export declare function instanceOfTagResource(value: object): value is TagResource; export declare function TagResourceFromJSON(json: any): TagResource; export declare function TagResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): TagResource; export declare function TagResourceToJSON(json: any): TagResource; export declare function TagResourceToJSONTyped(value?: TagResource | null, ignoreDiscriminator?: boolean): any;