Documentation ¶
Index ¶
- type ChatsRequestBuilder
- func (m *ChatsRequestBuilder) Count() ...
- func (m *ChatsRequestBuilder) CreateGetRequestInformation(ctx context.Context, ...) (...)
- func (m *ChatsRequestBuilder) CreatePostRequestInformation(ctx context.Context, ...) (...)
- func (m *ChatsRequestBuilder) Get(ctx context.Context, ...) (...)
- func (m *ChatsRequestBuilder) GetAllMessages() ...
- func (m *ChatsRequestBuilder) Post(ctx context.Context, ...) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Chatable, ...)
- type ChatsRequestBuilderGetQueryParameters
- type ChatsRequestBuilderGetRequestConfiguration
- type ChatsRequestBuilderPostRequestConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChatsRequestBuilder ¶
type ChatsRequestBuilder struct {
// contains filtered or unexported fields
}
ChatsRequestBuilder provides operations to manage the collection of chat entities.
func NewChatsRequestBuilder ¶
func NewChatsRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *ChatsRequestBuilder
NewChatsRequestBuilder instantiates a new ChatsRequestBuilder and sets the default values.
func NewChatsRequestBuilderInternal ¶
func NewChatsRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *ChatsRequestBuilder
NewChatsRequestBuilderInternal instantiates a new ChatsRequestBuilder and sets the default values.
func (*ChatsRequestBuilder) Count ¶ added in v0.13.0
func (m *ChatsRequestBuilder) Count() *i027ca8306320feafb49c520ae886963a07f45f5249ebedf0382070ff10454486.CountRequestBuilder
Count the Count property
func (*ChatsRequestBuilder) CreateGetRequestInformation ¶
func (m *ChatsRequestBuilder) CreateGetRequestInformation(ctx context.Context, requestConfiguration *ChatsRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to.
func (*ChatsRequestBuilder) CreatePostRequestInformation ¶
func (m *ChatsRequestBuilder) CreatePostRequestInformation(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Chatable, requestConfiguration *ChatsRequestBuilderPostRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePostRequestInformation create a new chat object.
func (*ChatsRequestBuilder) Get ¶
func (m *ChatsRequestBuilder) Get(ctx context.Context, requestConfiguration *ChatsRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ChatCollectionResponseable, error)
Get retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to.
func (*ChatsRequestBuilder) GetAllMessages ¶
func (m *ChatsRequestBuilder) GetAllMessages() *ia2e3aacb5f91a4416aa83a0229ae4a9c133c45941d8ecda717a533ae5554f96a.GetAllMessagesRequestBuilder
GetAllMessages provides operations to call the getAllMessages method.
func (*ChatsRequestBuilder) Post ¶
func (m *ChatsRequestBuilder) Post(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Chatable, requestConfiguration *ChatsRequestBuilderPostRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Chatable, error)
Post create a new chat object.
type ChatsRequestBuilderGetQueryParameters ¶
type ChatsRequestBuilderGetQueryParameters 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"` }
ChatsRequestBuilderGetQueryParameters retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to.
type ChatsRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type ChatsRequestBuilderGetRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Request query parameters QueryParameters *ChatsRequestBuilderGetQueryParameters }
ChatsRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type ChatsRequestBuilderPostRequestConfiguration ¶ added in v0.22.0
type ChatsRequestBuilderPostRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption }
ChatsRequestBuilderPostRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.