struct AreaStructData about an area known to the server.
-
The identifier of the area.
Declaration
Swift
let areaID: UInt32 -
The map identifier which the area is associated with. A value of
nullindicates that the area is not associated with a map. If thesupportedMapsattribute is not empty, this field matches theMapIDfield of an entry from thesupportedMapsattribute’s list. If thesupportedMapsattribute is empty, this field isnull.Declaration
Swift
let mapID: UInt32? -
Data describing the area. This field is used by clients to determine the name or the semantics of a certain area.
Declaration
Swift
let areaInfo: Matter.ServiceAreaTrait.AreaInfoStruct -
Creates a new Struct instance using data read from the given
TraitDecoder.Throws
HomeError.parseErrorwhen parsing fails.Declaration
Swift
init(decoder: TraitDecoder) throwsParameters
decoderThe raw data representing this Struct.
-
Writes this Struct to the given
TraitEncoder. ThrowsHomeError.parseErrorif the data could not be encoded.Declaration
Swift
func encode(with encoder: TraitEncoder) throws -
Returns the field corresponding to the given field ID.
Declaration
Swift
static func structField(id: UInt32) -> (any Field)?