struct AttributesAttributes for the NetworkControlTrait.
- 
                  
                  A list of the attribute IDs of the attributes supported by the cluster instance. Nullable: false. DeclarationSwift @TraitAttribute var attributeList: [UInt32]? { get }
- 
                  
                  The supported network profile names. Nullable: false. DeclarationSwift @TraitAttribute var networkProfiles: [String]? { get }
- 
                  
                  Whether the main network is enabled. Nullable: false. DeclarationSwift @TraitAttribute var networkEnabled: Bool? { get }
- 
                  
                  Whether the guest network is enabled. Nullable: false. DeclarationSwift @TraitAttribute var guestNetworkEnabled: Bool? { get }
- 
                  
                  Contains the SSID of the main network. Nullable: false. DeclarationSwift @TraitAttribute var networkSettings: Google.NetworkControlTrait.NetworkSettings? { get }
- 
                  
                  Whether the network usage is unlimited. If this attribute is true, thenetworkUsageLimitMBattribute is ignored. Nullable: false.DeclarationSwift @TraitAttribute var networkUsageUnlimited: Bool? { get }
- 
                  
                  The network usage limit for the current billing period. Nullable: false. DeclarationSwift @TraitAttribute var networkUsageLimitMB: Float32? { get }
- 
                  
                  The network usage in megabytes for the current billing period. Nullable: false. DeclarationSwift @TraitAttribute var networkUsageMB: Float32? { get }
- 
                  
                  States for the network profiles. Nullable: false. DeclarationSwift @TraitAttribute var networkProfileStates: [Google.NetworkControlTrait.NetworkProfileState]? { get }
- 
                  
                  Results of the most recent network-upload speed test. Nullable: false. DeclarationSwift @TraitAttribute var lastNetworkUploadSpeedTest: Google.NetworkControlTrait.LastNetworkUploadSpeedTest? { get }
- 
                  
                  Whether a network-speed test is currently being run. Nullable: false. DeclarationSwift @TraitAttribute var networkSpeedTestInProgress: Bool? { get }
- 
                  
                  Contains the SSID of the guest network. Nullable: false. DeclarationSwift @TraitAttribute var guestNetworkSettings: Google.NetworkControlTrait.GuestNetworkSettings? { get }
- 
                  
                  Number of devices connected to the network. Nullable: false. DeclarationSwift @TraitAttribute var numConnectedDevices: UInt32? { get }
- 
                  
                  Results of the most recent network-download speed test. Nullable: false. DeclarationSwift @TraitAttribute var lastNetworkDownloadSpeedTest: Google.NetworkControlTrait.LastNetworkDownloadSpeedTest? { get }
- 
                  
                  A list of server-generated commands (server to client) which are supported by this cluster server instance. Nullable: false. DeclarationSwift @TraitAttribute var generatedCommandList: [UInt32]? { get }
- 
                  
                  A list of client-generated commands which are supported by this cluster server instance. Nullable: false. DeclarationSwift @TraitAttribute var acceptedCommandList: [UInt32]? { get }
- 
                  
                  Whether the server supports zero or more optional cluster features. A cluster feature is a set of cluster elements that are mandatory or optional for a defined feature of the cluster. If a cluster feature is supported by the cluster instance, then the corresponding bit is set to 1, otherwise the bit is set to 0 (zero). Nullable: false. DeclarationSwift @TraitAttribute var featureMap: Google.NetworkControlTrait.NetworkControlFeature? { get }
- 
                  
                  The revision of the server cluster specification supported by the cluster instance. Nullable: false. DeclarationSwift @TraitAttribute var clusterRevision: UInt16? { get }
- 
                  
                  The trait identifier. DeclarationSwift static var identifier: String { get }
- 
                  
                  Writes this object to the given TraitEncoder. ThrowsHomeError.encodingFailedif the data could not be encoded.DeclarationSwift func encode(with encoder: TraitEncoder) throws
- 
                  
                  Returns a Boolean value indicating whether two values are equal. Equality is the inverse of inequality. For any values aandb,a == bimplies thata != bisfalse.DeclarationSwift static func == (lhs: Google.NetworkControlTrait.Attributes, rhs: Google.NetworkControlTrait.Attributes) -> BoolParameterslhsA value to compare. rhsAnother value to compare. 
- 
                  
                  Hashes the essential components of this value by feeding them into the given hasher. Implement this method to conform to the Hashableprotocol. The components used for hashing must be the same as the components compared in your type’s==operator implementation. Callhasher.combine(_:)with each of these components.Important In your implementation of hash(into:), don’t callfinalize()on thehasherinstance provided, or replace it with a different instance. Doing so may become a compile-time error in the future.DeclarationSwift func hash(into hasher: inout Hasher)