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

import Foundation

public struct WebBillingLocalizationsResponse: Codable, Equatable {
    public var language: String
    public var surface: Surface
    public var translations: [String: AnyJSON]

    public struct Surface: RawRepresentable, Codable, Equatable {
        public let rawValue: String

        public init(rawValue: String) {
            self.rawValue = rawValue
        }

        public static let web = Self(rawValue: "web")
    }

    public init(language: String, surface: Surface, translations: [String: AnyJSON]) {
        self.language = language
        self.surface = surface
        self.translations = translations
    }
}
