struct Roomextension Room : Equatable, Hashable, HomeObject, HomeObjectImpl, Identifiable, ObjectDataRepresentable, SendableRepresents a single room in the User’s home graph.
- 
                  
                  Instance-level accessor for an object’s HomeObjectType. DeclarationSwift let objectType: HomeObjectType
- 
                  
                  Per-Home-unique identifier for this object. DeclarationSwift let id: String
- 
                  
                  Undocumented DeclarationSwift var name: String { get }
- 
                  
                  Undocumented DeclarationSwift var structureID: String { get }
- 
                  
                  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: Room, rhs: Room) -> 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)
- 
                  
                  Change the room name to the given value DeclarationSwift func setName(_ name: String) async throws -> RoomParametersnameThe new name for the room. Return ValueThe updated room.