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

import Foundation

/// Billing period toggle for API response
public struct BillingPeriodToggleResponse: Codable, Equatable {
    /// LocalizedTextResponse
    ///
    /// Localized text for API response (no key field)
    public var annualLabel: LocalizedTextResponse
    /// ColoredBadgeResponse
    ///
    /// Badge with colors for API response (no key field)
    public var discountBadge: ColoredBadgeResponse
    /// LocalizedTextResponse
    ///
    /// Localized text for API response (no key field)
    public var monthlyLabel: LocalizedTextResponse

    public init(annualLabel: LocalizedTextResponse, discountBadge: ColoredBadgeResponse, monthlyLabel: LocalizedTextResponse) {
        self.annualLabel = annualLabel
        self.discountBadge = discountBadge
        self.monthlyLabel = monthlyLabel
    }
}
