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

import Foundation

public struct PricingPlansSchema: Codable, Equatable {
    public var plans: [UsagePlanSchema]

    public init(plans: [UsagePlanSchema]) {
        self.plans = plans
    }
}
