Tier
public struct Tier : Codable, Equatable
Struct representing Tier related values.
-
Value representing the entity id.
Declaration
Swift
public var id: Int
-
Name of tier.
Declaration
Swift
public var name: String
-
Label of tier.
Declaration
Swift
public var label: String
-
Description of Tier.
Declaration
Swift
public var description: String
-
Collection of metric thresholds.
Declaration
Swift
public var metricThresholds: AccountSummary.MetricThreshold?
-
Undocumented
Declaration
Swift
public init(id: Int, name: String, label: String, description: String, metricThresholds: AccountSummary.MetricThreshold?)
-
Declaration
Swift
public init(from decoder: Decoder) throws