// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct GetDiscountOfferResponse: Codable, Equatable {
    /// DiscountOfferWithRedemptionSchema
    ///
    /// Schema for discount offer that includes redemption status
    public var discountOffer: DiscountOfferWithRedemptionSchema

    public init(discountOffer: DiscountOfferWithRedemptionSchema) {
        self.discountOffer = discountOffer
    }
}
