/** * 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 { ProductRegistrationCustomerLiteResource } from './ProductRegistrationCustomerLiteResource'; /** * * @export * @interface ProductRegistrationListResource */ export interface ProductRegistrationListResource { /** * * @type {number} * @memberof ProductRegistrationListResource */ id?: number | null; /** * * @type {Date} * @memberof ProductRegistrationListResource */ purchasedDate: Date; /** * * @type {ProductRegistrationCustomerLiteResource} * @memberof ProductRegistrationListResource */ customer: ProductRegistrationCustomerLiteResource | null; /** * * @type {number} * @memberof ProductRegistrationListResource */ productChildrenCount: number; /** * * @type {Date} * @memberof ProductRegistrationListResource */ createdAt?: Date | null; } /** * Check if a given object implements the ProductRegistrationListResource interface. */ export declare function instanceOfProductRegistrationListResource(value: object): value is ProductRegistrationListResource; export declare function ProductRegistrationListResourceFromJSON(json: any): ProductRegistrationListResource; export declare function ProductRegistrationListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRegistrationListResource; export declare function ProductRegistrationListResourceToJSON(json: any): ProductRegistrationListResource; export declare function ProductRegistrationListResourceToJSONTyped(value?: ProductRegistrationListResource | null, ignoreDiscriminator?: boolean): any;