/** * 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 SEOResource */ export interface SEOResource { /** * * @type {number} * @memberof SEOResource */ id: number; /** * * @type {string} * @memberof SEOResource */ seoTitle: string; /** * * @type {string} * @memberof SEOResource */ seoDescription: string; /** * * @type {number} * @memberof SEOResource */ siteId: number; } /** * Check if a given object implements the SEOResource interface. */ export declare function instanceOfSEOResource(value: object): value is SEOResource; export declare function SEOResourceFromJSON(json: any): SEOResource; export declare function SEOResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SEOResource; export declare function SEOResourceToJSON(json: any): SEOResource; export declare function SEOResourceToJSONTyped(value?: SEOResource | null, ignoreDiscriminator?: boolean): any;