Documentation
¶
Index ¶
- type CountRequestBuilder
- type CountRequestBuilderGetRequestConfiguration
- type ItemRoomRequestBuilder
- type ItemRoomRequestBuilderGetQueryParameters
- type ItemRoomRequestBuilderGetRequestConfiguration
- type PlaceItemRequestBuilder
- func (m *PlaceItemRequestBuilder) Delete(ctx context.Context, ...) error
- func (m *PlaceItemRequestBuilder) Get(ctx context.Context, ...) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, ...)
- func (m *PlaceItemRequestBuilder) Patch(ctx context.Context, ...) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, ...)
- func (m *PlaceItemRequestBuilder) Room() *ItemRoomRequestBuilder
- func (m *PlaceItemRequestBuilder) ToDeleteRequestInformation(ctx context.Context, ...) (...)
- func (m *PlaceItemRequestBuilder) ToGetRequestInformation(ctx context.Context, ...) (...)
- func (m *PlaceItemRequestBuilder) ToPatchRequestInformation(ctx context.Context, ...) (...)
- type PlaceItemRequestBuilderDeleteRequestConfiguration
- type PlaceItemRequestBuilderGetQueryParameters
- type PlaceItemRequestBuilderGetRequestConfiguration
- type PlaceItemRequestBuilderPatchRequestConfiguration
- type PlacesRequestBuilder
- func (m *PlacesRequestBuilder) Count() *CountRequestBuilder
- func (m *PlacesRequestBuilder) Get(ctx context.Context, ...) (...)
- func (m *PlacesRequestBuilder) Post(ctx context.Context, ...) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, ...)
- func (m *PlacesRequestBuilder) Room() *RoomRequestBuilder
- func (m *PlacesRequestBuilder) ToGetRequestInformation(ctx context.Context, ...) (...)
- func (m *PlacesRequestBuilder) ToPostRequestInformation(ctx context.Context, ...) (...)
- type PlacesRequestBuilderGetQueryParameters
- type PlacesRequestBuilderGetRequestConfiguration
- type PlacesRequestBuilderPostRequestConfiguration
- type RoomCountRequestBuilder
- type RoomCountRequestBuilderGetRequestConfiguration
- type RoomRequestBuilder
- type RoomRequestBuilderGetQueryParameters
- type RoomRequestBuilderGetRequestConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CountRequestBuilder ¶ added in v0.49.0
type CountRequestBuilder struct {
// contains filtered or unexported fields
}
CountRequestBuilder provides operations to count the resources in the collection.
func NewCountRequestBuilder ¶ added in v0.49.0
func NewCountRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *CountRequestBuilder
NewCountRequestBuilder instantiates a new CountRequestBuilder and sets the default values.
func NewCountRequestBuilderInternal ¶ added in v0.49.0
func NewCountRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *CountRequestBuilder
NewCountRequestBuilderInternal instantiates a new CountRequestBuilder and sets the default values.
func (*CountRequestBuilder) Get ¶ added in v0.49.0
func (m *CountRequestBuilder) Get(ctx context.Context, requestConfiguration *CountRequestBuilderGetRequestConfiguration) (*int32, error)
Get get the number of the resource
func (*CountRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *CountRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *CountRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the number of the resource
type CountRequestBuilderGetRequestConfiguration ¶ added in v0.49.0
type CountRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
CountRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type ItemRoomRequestBuilder ¶ added in v0.49.0
type ItemRoomRequestBuilder struct {
// contains filtered or unexported fields
}
ItemRoomRequestBuilder casts the previous resource to room.
func NewItemRoomRequestBuilder ¶ added in v0.49.0
func NewItemRoomRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *ItemRoomRequestBuilder
NewItemRoomRequestBuilder instantiates a new RoomRequestBuilder and sets the default values.
func NewItemRoomRequestBuilderInternal ¶ added in v0.49.0
func NewItemRoomRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *ItemRoomRequestBuilder
NewItemRoomRequestBuilderInternal instantiates a new RoomRequestBuilder and sets the default values.
func (*ItemRoomRequestBuilder) Get ¶ added in v0.49.0
func (m *ItemRoomRequestBuilder) Get(ctx context.Context, requestConfiguration *ItemRoomRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Roomable, error)
Get get the item of type microsoft.graph.place as microsoft.graph.room
func (*ItemRoomRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *ItemRoomRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *ItemRoomRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the item of type microsoft.graph.place as microsoft.graph.room
type ItemRoomRequestBuilderGetQueryParameters ¶ added in v0.49.0
type ItemRoomRequestBuilderGetQueryParameters struct {
// Expand related entities
Expand []string `uriparametername:"%24expand"`
// Select properties to be returned
Select []string `uriparametername:"%24select"`
}
ItemRoomRequestBuilderGetQueryParameters get the item of type microsoft.graph.place as microsoft.graph.room
type ItemRoomRequestBuilderGetRequestConfiguration ¶ added in v0.49.0
type ItemRoomRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
// Request query parameters
QueryParameters *ItemRoomRequestBuilderGetQueryParameters
}
ItemRoomRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type PlaceItemRequestBuilder ¶ added in v0.49.0
type PlaceItemRequestBuilder struct {
// contains filtered or unexported fields
}
PlaceItemRequestBuilder provides operations to manage the collection of place entities.
func NewPlaceItemRequestBuilder ¶ added in v0.49.0
func NewPlaceItemRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PlaceItemRequestBuilder
NewPlaceItemRequestBuilder instantiates a new PlaceItemRequestBuilder and sets the default values.
func NewPlaceItemRequestBuilderInternal ¶ added in v0.49.0
func NewPlaceItemRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PlaceItemRequestBuilder
NewPlaceItemRequestBuilderInternal instantiates a new PlaceItemRequestBuilder and sets the default values.
func (*PlaceItemRequestBuilder) Delete ¶ added in v0.49.0
func (m *PlaceItemRequestBuilder) Delete(ctx context.Context, requestConfiguration *PlaceItemRequestBuilderDeleteRequestConfiguration) error
Delete delete entity from places
func (*PlaceItemRequestBuilder) Get ¶ added in v0.49.0
func (m *PlaceItemRequestBuilder) Get(ctx context.Context, requestConfiguration *PlaceItemRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, error)
Get get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object. Find more info here
func (*PlaceItemRequestBuilder) Patch ¶ added in v0.49.0
func (m *PlaceItemRequestBuilder) Patch(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, requestConfiguration *PlaceItemRequestBuilderPatchRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, error)
Patch update the properties of place object, which can be a room or roomList. You can identify the **room** or **roomList** by specifying the **id** or **emailAddress** property. Find more info here
func (*PlaceItemRequestBuilder) Room ¶ added in v0.49.0
func (m *PlaceItemRequestBuilder) Room() *ItemRoomRequestBuilder
Room casts the previous resource to room.
func (*PlaceItemRequestBuilder) ToDeleteRequestInformation ¶ added in v0.51.0
func (m *PlaceItemRequestBuilder) ToDeleteRequestInformation(ctx context.Context, requestConfiguration *PlaceItemRequestBuilderDeleteRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToDeleteRequestInformation delete entity from places
func (*PlaceItemRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *PlaceItemRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *PlaceItemRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object.
func (*PlaceItemRequestBuilder) ToPatchRequestInformation ¶ added in v0.51.0
func (m *PlaceItemRequestBuilder) ToPatchRequestInformation(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, requestConfiguration *PlaceItemRequestBuilderPatchRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToPatchRequestInformation update the properties of place object, which can be a room or roomList. You can identify the **room** or **roomList** by specifying the **id** or **emailAddress** property.
type PlaceItemRequestBuilderDeleteRequestConfiguration ¶ added in v0.49.0
type PlaceItemRequestBuilderDeleteRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
PlaceItemRequestBuilderDeleteRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type PlaceItemRequestBuilderGetQueryParameters ¶ added in v0.49.0
type PlaceItemRequestBuilderGetQueryParameters struct {
// Expand related entities
Expand []string `uriparametername:"%24expand"`
// Select properties to be returned
Select []string `uriparametername:"%24select"`
}
PlaceItemRequestBuilderGetQueryParameters get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object.
type PlaceItemRequestBuilderGetRequestConfiguration ¶ added in v0.49.0
type PlaceItemRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
// Request query parameters
QueryParameters *PlaceItemRequestBuilderGetQueryParameters
}
PlaceItemRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type PlaceItemRequestBuilderPatchRequestConfiguration ¶ added in v0.49.0
type PlaceItemRequestBuilderPatchRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
PlaceItemRequestBuilderPatchRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type PlacesRequestBuilder ¶
type PlacesRequestBuilder struct {
// contains filtered or unexported fields
}
PlacesRequestBuilder provides operations to manage the collection of place entities.
func NewPlacesRequestBuilder ¶
func NewPlacesRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PlacesRequestBuilder
NewPlacesRequestBuilder instantiates a new PlacesRequestBuilder and sets the default values.
func NewPlacesRequestBuilderInternal ¶
func NewPlacesRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PlacesRequestBuilder
NewPlacesRequestBuilderInternal instantiates a new PlacesRequestBuilder and sets the default values.
func (*PlacesRequestBuilder) Count ¶ added in v0.13.0
func (m *PlacesRequestBuilder) Count() *CountRequestBuilder
Count provides operations to count the resources in the collection.
func (*PlacesRequestBuilder) Get ¶
func (m *PlacesRequestBuilder) Get(ctx context.Context, requestConfiguration *PlacesRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.PlaceCollectionResponseable, error)
Get get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object.
func (*PlacesRequestBuilder) Post ¶
func (m *PlacesRequestBuilder) Post(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, requestConfiguration *PlacesRequestBuilderPostRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, error)
Post add new entity to places
func (*PlacesRequestBuilder) Room ¶ added in v0.26.0
func (m *PlacesRequestBuilder) Room() *RoomRequestBuilder
Room casts the previous resource to room.
func (*PlacesRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *PlacesRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *PlacesRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object.
func (*PlacesRequestBuilder) ToPostRequestInformation ¶ added in v0.51.0
func (m *PlacesRequestBuilder) ToPostRequestInformation(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Placeable, requestConfiguration *PlacesRequestBuilderPostRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToPostRequestInformation add new entity to places
type PlacesRequestBuilderGetQueryParameters ¶
type PlacesRequestBuilderGetQueryParameters struct {
// Include count of items
Count *bool `uriparametername:"%24count"`
// Expand related entities
Expand []string `uriparametername:"%24expand"`
// Filter items by property values
Filter *string `uriparametername:"%24filter"`
// Order items by property values
Orderby []string `uriparametername:"%24orderby"`
// Search items by search phrases
Search *string `uriparametername:"%24search"`
// Select properties to be returned
Select []string `uriparametername:"%24select"`
// Skip the first n items
Skip *int32 `uriparametername:"%24skip"`
// Show only the first n items
Top *int32 `uriparametername:"%24top"`
}
PlacesRequestBuilderGetQueryParameters get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: Both **room** and **roomList** are derived from the place object.
type PlacesRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type PlacesRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
// Request query parameters
QueryParameters *PlacesRequestBuilderGetQueryParameters
}
PlacesRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type PlacesRequestBuilderPostRequestConfiguration ¶ added in v0.22.0
type PlacesRequestBuilderPostRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
PlacesRequestBuilderPostRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type RoomCountRequestBuilder ¶ added in v0.49.0
type RoomCountRequestBuilder struct {
// contains filtered or unexported fields
}
RoomCountRequestBuilder provides operations to count the resources in the collection.
func NewRoomCountRequestBuilder ¶ added in v0.49.0
func NewRoomCountRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *RoomCountRequestBuilder
NewRoomCountRequestBuilder instantiates a new CountRequestBuilder and sets the default values.
func NewRoomCountRequestBuilderInternal ¶ added in v0.49.0
func NewRoomCountRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *RoomCountRequestBuilder
NewRoomCountRequestBuilderInternal instantiates a new CountRequestBuilder and sets the default values.
func (*RoomCountRequestBuilder) Get ¶ added in v0.49.0
func (m *RoomCountRequestBuilder) Get(ctx context.Context, requestConfiguration *RoomCountRequestBuilderGetRequestConfiguration) (*int32, error)
Get get the number of the resource
func (*RoomCountRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *RoomCountRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *RoomCountRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the number of the resource
type RoomCountRequestBuilderGetRequestConfiguration ¶ added in v0.49.0
type RoomCountRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
RoomCountRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type RoomRequestBuilder ¶ added in v0.49.0
type RoomRequestBuilder struct {
// contains filtered or unexported fields
}
RoomRequestBuilder casts the previous resource to room.
func NewRoomRequestBuilder ¶ added in v0.49.0
func NewRoomRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *RoomRequestBuilder
NewRoomRequestBuilder instantiates a new RoomRequestBuilder and sets the default values.
func NewRoomRequestBuilderInternal ¶ added in v0.49.0
func NewRoomRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *RoomRequestBuilder
NewRoomRequestBuilderInternal instantiates a new RoomRequestBuilder and sets the default values.
func (*RoomRequestBuilder) Count ¶ added in v0.49.0
func (m *RoomRequestBuilder) Count() *RoomCountRequestBuilder
Count provides operations to count the resources in the collection.
func (*RoomRequestBuilder) Get ¶ added in v0.49.0
func (m *RoomRequestBuilder) Get(ctx context.Context, requestConfiguration *RoomRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.RoomCollectionResponseable, error)
Get get the items of type microsoft.graph.room in the microsoft.graph.place collection
func (*RoomRequestBuilder) ToGetRequestInformation ¶ added in v0.51.0
func (m *RoomRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *RoomRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
ToGetRequestInformation get the items of type microsoft.graph.room in the microsoft.graph.place collection
type RoomRequestBuilderGetQueryParameters ¶ added in v0.49.0
type RoomRequestBuilderGetQueryParameters struct {
// Include count of items
Count *bool `uriparametername:"%24count"`
// Expand related entities
Expand []string `uriparametername:"%24expand"`
// Filter items by property values
Filter *string `uriparametername:"%24filter"`
// Order items by property values
Orderby []string `uriparametername:"%24orderby"`
// Search items by search phrases
Search *string `uriparametername:"%24search"`
// Select properties to be returned
Select []string `uriparametername:"%24select"`
// Skip the first n items
Skip *int32 `uriparametername:"%24skip"`
// Show only the first n items
Top *int32 `uriparametername:"%24top"`
}
RoomRequestBuilderGetQueryParameters get the items of type microsoft.graph.room in the microsoft.graph.place collection
type RoomRequestBuilderGetRequestConfiguration ¶ added in v0.49.0
type RoomRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
// Request query parameters
QueryParameters *RoomRequestBuilderGetQueryParameters
}
RoomRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.