/** * 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 { SupplierListResource } from './SupplierListResource'; /** * * @export * @interface PaginatedSupplierListResourceResponse */ export interface PaginatedSupplierListResourceResponse { /** * * @type {Array} * @memberof PaginatedSupplierListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedSupplierListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedSupplierListResourceResponse interface. */ export declare function instanceOfPaginatedSupplierListResourceResponse(value: object): value is PaginatedSupplierListResourceResponse; export declare function PaginatedSupplierListResourceResponseFromJSON(json: any): PaginatedSupplierListResourceResponse; export declare function PaginatedSupplierListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedSupplierListResourceResponse; export declare function PaginatedSupplierListResourceResponseToJSON(json: any): PaginatedSupplierListResourceResponse; export declare function PaginatedSupplierListResourceResponseToJSONTyped(value?: PaginatedSupplierListResourceResponse | null, ignoreDiscriminator?: boolean): any;