/** * 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 { PagingMetadata } from './PagingMetadata'; import type { ProductSearchResultResource } from './ProductSearchResultResource'; /** * * @export * @interface PaginatedProductSearchResultResourceResponse */ export interface PaginatedProductSearchResultResourceResponse { /** * * @type {Array} * @memberof PaginatedProductSearchResultResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductSearchResultResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductSearchResultResourceResponse interface. */ export declare function instanceOfPaginatedProductSearchResultResourceResponse(value: object): value is PaginatedProductSearchResultResourceResponse; export declare function PaginatedProductSearchResultResourceResponseFromJSON(json: any): PaginatedProductSearchResultResourceResponse; export declare function PaginatedProductSearchResultResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductSearchResultResourceResponse; export declare function PaginatedProductSearchResultResourceResponseToJSON(json: any): PaginatedProductSearchResultResourceResponse; export declare function PaginatedProductSearchResultResourceResponseToJSONTyped(value?: PaginatedProductSearchResultResourceResponse | null, ignoreDiscriminator?: boolean): any;