/** * 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 { SEOResource } from './SEOResource'; /** * * @export * @interface SEOResourceArrayResponse */ export interface SEOResourceArrayResponse { /** * * @type {Array} * @memberof SEOResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the SEOResourceArrayResponse interface. */ export declare function instanceOfSEOResourceArrayResponse(value: object): value is SEOResourceArrayResponse; export declare function SEOResourceArrayResponseFromJSON(json: any): SEOResourceArrayResponse; export declare function SEOResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SEOResourceArrayResponse; export declare function SEOResourceArrayResponseToJSON(json: any): SEOResourceArrayResponse; export declare function SEOResourceArrayResponseToJSONTyped(value?: SEOResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;