/** * 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 ProductListResource */ export interface ProductListResource { /** * * @type {number} * @memberof ProductListResource */ id: number; /** * * @type {string} * @memberof ProductListResource */ name: string; } /** * Check if a given object implements the ProductListResource interface. */ export declare function instanceOfProductListResource(value: object): value is ProductListResource; export declare function ProductListResourceFromJSON(json: any): ProductListResource; export declare function ProductListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductListResource; export declare function ProductListResourceToJSON(json: any): ProductListResource; export declare function ProductListResourceToJSONTyped(value?: ProductListResource | null, ignoreDiscriminator?: boolean): any;