/** * 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 { SEOFrontendResource } from './SEOFrontendResource'; /** * * @export * @interface SEOFrontendResourceArrayResponse */ export interface SEOFrontendResourceArrayResponse { /** * * @type {Array} * @memberof SEOFrontendResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the SEOFrontendResourceArrayResponse interface. */ export declare function instanceOfSEOFrontendResourceArrayResponse(value: object): value is SEOFrontendResourceArrayResponse; export declare function SEOFrontendResourceArrayResponseFromJSON(json: any): SEOFrontendResourceArrayResponse; export declare function SEOFrontendResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SEOFrontendResourceArrayResponse; export declare function SEOFrontendResourceArrayResponseToJSON(json: any): SEOFrontendResourceArrayResponse; export declare function SEOFrontendResourceArrayResponseToJSONTyped(value?: SEOFrontendResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;