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

import Foundation

/// Schema for eligible discounts response.
public struct EligibleDiscountsResponse: Codable, Equatable {
    /// Map of plan_key to subscription_period_type to discount details
    public var eligibleDiscounts: [String: [String: DiscountDetails]]

    public init(eligibleDiscounts: [String: [String: DiscountDetails]]) {
        self.eligibleDiscounts = eligibleDiscounts
    }
}
