/** * 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 UpdateLineItemRequest */ export interface UpdateLineItemRequest { /** * * @type {number} * @memberof UpdateLineItemRequest */ quantity: number; /** * * @type {number} * @memberof UpdateLineItemRequest */ productPrice?: number | null; } /** * Check if a given object implements the UpdateLineItemRequest interface. */ export declare function instanceOfUpdateLineItemRequest(value: object): value is UpdateLineItemRequest; export declare function UpdateLineItemRequestFromJSON(json: any): UpdateLineItemRequest; export declare function UpdateLineItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLineItemRequest; export declare function UpdateLineItemRequestToJSON(json: any): UpdateLineItemRequest; export declare function UpdateLineItemRequestToJSONTyped(value?: UpdateLineItemRequest | null, ignoreDiscriminator?: boolean): any;