/** * 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. */ /** * * @export * @interface ProductSearchResponseResourceMeta */ export interface ProductSearchResponseResourceMeta { /** * * @type {number} * @memberof ProductSearchResponseResourceMeta */ currentPage: number; /** * * @type {number} * @memberof ProductSearchResponseResourceMeta */ perPage: number; /** * * @type {number} * @memberof ProductSearchResponseResourceMeta */ total: number; /** * * @type {number} * @memberof ProductSearchResponseResourceMeta */ lastPage: number; } /** * Check if a given object implements the ProductSearchResponseResourceMeta interface. */ export declare function instanceOfProductSearchResponseResourceMeta(value: object): value is ProductSearchResponseResourceMeta; export declare function ProductSearchResponseResourceMetaFromJSON(json: any): ProductSearchResponseResourceMeta; export declare function ProductSearchResponseResourceMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductSearchResponseResourceMeta; export declare function ProductSearchResponseResourceMetaToJSON(json: any): ProductSearchResponseResourceMeta; export declare function ProductSearchResponseResourceMetaToJSONTyped(value?: ProductSearchResponseResourceMeta | null, ignoreDiscriminator?: boolean): any;