/** * 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 { ProductChildRelationResource } from './ProductChildRelationResource'; /** * * @export * @interface PaginatedProductChildRelationResourceResponse */ export interface PaginatedProductChildRelationResourceResponse { /** * * @type {Array} * @memberof PaginatedProductChildRelationResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductChildRelationResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductChildRelationResourceResponse interface. */ export declare function instanceOfPaginatedProductChildRelationResourceResponse(value: object): value is PaginatedProductChildRelationResourceResponse; export declare function PaginatedProductChildRelationResourceResponseFromJSON(json: any): PaginatedProductChildRelationResourceResponse; export declare function PaginatedProductChildRelationResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductChildRelationResourceResponse; export declare function PaginatedProductChildRelationResourceResponseToJSON(json: any): PaginatedProductChildRelationResourceResponse; export declare function PaginatedProductChildRelationResourceResponseToJSONTyped(value?: PaginatedProductChildRelationResourceResponse | null, ignoreDiscriminator?: boolean): any;