/** * 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 { ProductChildFrontendResource } from './ProductChildFrontendResource'; /** * * @export * @interface PaginatedProductChildFrontendResourceResponse */ export interface PaginatedProductChildFrontendResourceResponse { /** * * @type {Array} * @memberof PaginatedProductChildFrontendResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductChildFrontendResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductChildFrontendResourceResponse interface. */ export declare function instanceOfPaginatedProductChildFrontendResourceResponse(value: object): value is PaginatedProductChildFrontendResourceResponse; export declare function PaginatedProductChildFrontendResourceResponseFromJSON(json: any): PaginatedProductChildFrontendResourceResponse; export declare function PaginatedProductChildFrontendResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductChildFrontendResourceResponse; export declare function PaginatedProductChildFrontendResourceResponseToJSON(json: any): PaginatedProductChildFrontendResourceResponse; export declare function PaginatedProductChildFrontendResourceResponseToJSONTyped(value?: PaginatedProductChildFrontendResourceResponse | null, ignoreDiscriminator?: boolean): any;