github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelRoom.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Room undocumented
     6  type Room struct {
     7  	// Place is the base model of Room
     8  	Place
     9  	// EmailAddress undocumented
    10  	EmailAddress *string `json:"emailAddress,omitempty"`
    11  	// Nickname undocumented
    12  	Nickname *string `json:"nickname,omitempty"`
    13  	// Building undocumented
    14  	Building *string `json:"building,omitempty"`
    15  	// FloorNumber undocumented
    16  	FloorNumber *int `json:"floorNumber,omitempty"`
    17  	// Label undocumented
    18  	Label *string `json:"label,omitempty"`
    19  	// Capacity undocumented
    20  	Capacity *int `json:"capacity,omitempty"`
    21  	// BookingType undocumented
    22  	BookingType *BookingType `json:"bookingType,omitempty"`
    23  	// AudioDeviceName undocumented
    24  	AudioDeviceName *string `json:"audioDeviceName,omitempty"`
    25  	// VideoDeviceName undocumented
    26  	VideoDeviceName *string `json:"videoDeviceName,omitempty"`
    27  	// DisplayDeviceName undocumented
    28  	DisplayDeviceName *string `json:"displayDeviceName,omitempty"`
    29  	// IsWheelChairAccessible undocumented
    30  	IsWheelChairAccessible *bool `json:"isWheelChairAccessible,omitempty"`
    31  	// Tags undocumented
    32  	Tags []string `json:"tags,omitempty"`
    33  	// FloorLabel undocumented
    34  	FloorLabel *string `json:"floorLabel,omitempty"`
    35  }
    36  
    37  // RoomList undocumented
    38  type RoomList struct {
    39  	// Place is the base model of RoomList
    40  	Place
    41  	// EmailAddress undocumented
    42  	EmailAddress *string `json:"emailAddress,omitempty"`
    43  	// Rooms undocumented
    44  	Rooms []Room `json:"rooms,omitempty"`
    45  }