<xs:simpleType name="RoomStatus" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:restriction base="xs:string">
<xs:enumeration value="Archived" />
<xs:enumeration value="Active" />
<xs:enumeration value="ActiveCC" />
<xs:enumeration value="ArchivedCC" />
<xs:enumeration value="AwaitingVerification" />
<xs:enumeration value="Creating" />
<xs:enumeration value="Declined" />
<xs:enumeration value="DeclinedAndArchived" />
<xs:enumeration value="Expired" />
<xs:enumeration value="Deleted" />
</xs:restriction>
</xs:simpleType>
|