/** * 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 DetachCouponRequest */ export interface DetachCouponRequest { /** * * @type {Array} * @memberof DetachCouponRequest */ couponIds: Array; } /** * Check if a given object implements the DetachCouponRequest interface. */ export declare function instanceOfDetachCouponRequest(value: object): value is DetachCouponRequest; export declare function DetachCouponRequestFromJSON(json: any): DetachCouponRequest; export declare function DetachCouponRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetachCouponRequest; export declare function DetachCouponRequestToJSON(json: any): DetachCouponRequest; export declare function DetachCouponRequestToJSONTyped(value?: DetachCouponRequest | null, ignoreDiscriminator?: boolean): any;