/** * 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 { Thumbnail } from './Thumbnail'; /** * * @export * @interface CreatePageRequestBlog */ export interface CreatePageRequestBlog { /** * * @type {string} * @memberof CreatePageRequestBlog */ excerpt?: string | null; /** * * @type {boolean} * @memberof CreatePageRequestBlog */ featured?: boolean; /** * * @type {Array} * @memberof CreatePageRequestBlog */ blogCategories?: Array; /** * * @type {Thumbnail} * @memberof CreatePageRequestBlog */ thumbnail?: Thumbnail; } /** * Check if a given object implements the CreatePageRequestBlog interface. */ export declare function instanceOfCreatePageRequestBlog(value: object): value is CreatePageRequestBlog; export declare function CreatePageRequestBlogFromJSON(json: any): CreatePageRequestBlog; export declare function CreatePageRequestBlogFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePageRequestBlog; export declare function CreatePageRequestBlogToJSON(json: any): CreatePageRequestBlog; export declare function CreatePageRequestBlogToJSONTyped(value?: CreatePageRequestBlog | null, ignoreDiscriminator?: boolean): any;