/** * 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 LineItemDiscountResource */ export interface LineItemDiscountResource { /** * * @type {number} * @memberof LineItemDiscountResource */ id: number; /** * * @type {string} * @memberof LineItemDiscountResource */ name: string; /** * * @type {number} * @memberof LineItemDiscountResource */ discountTotal: number; /** * * @type {string} * @memberof LineItemDiscountResource */ couponCode: string; } /** * Check if a given object implements the LineItemDiscountResource interface. */ export declare function instanceOfLineItemDiscountResource(value: object): value is LineItemDiscountResource; export declare function LineItemDiscountResourceFromJSON(json: any): LineItemDiscountResource; export declare function LineItemDiscountResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LineItemDiscountResource; export declare function LineItemDiscountResourceToJSON(json: any): LineItemDiscountResource; export declare function LineItemDiscountResourceToJSONTyped(value?: LineItemDiscountResource | null, ignoreDiscriminator?: boolean): any;