Documentation ¶
Index ¶
- type BotRequestBuilder
- func (m *BotRequestBuilder) CreateDeleteRequestInformation() (...)
- func (m *BotRequestBuilder) CreateDeleteRequestInformationWithRequestConfiguration(requestConfiguration *BotRequestBuilderDeleteRequestConfiguration) (...)
- func (m *BotRequestBuilder) CreateGetRequestInformation() (...)
- func (m *BotRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *BotRequestBuilderGetRequestConfiguration) (...)
- func (m *BotRequestBuilder) CreatePatchRequestInformation(...) (...)
- func (m *BotRequestBuilder) CreatePatchRequestInformationWithRequestConfiguration(...) (...)
- func (m *BotRequestBuilder) Delete() error
- func (m *BotRequestBuilder) DeleteWithRequestConfigurationAndResponseHandler(requestConfiguration *BotRequestBuilderDeleteRequestConfiguration, ...) error
- func (m *BotRequestBuilder) Get() (...)
- func (m *BotRequestBuilder) GetWithRequestConfigurationAndResponseHandler(requestConfiguration *BotRequestBuilderGetRequestConfiguration, ...) (...)
- func (m *BotRequestBuilder) Patch(...) error
- func (m *BotRequestBuilder) PatchWithRequestConfigurationAndResponseHandler(...) error
- type BotRequestBuilderDeleteRequestConfiguration
- type BotRequestBuilderGetQueryParameters
- type BotRequestBuilderGetRequestConfiguration
- type BotRequestBuilderPatchRequestConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BotRequestBuilder ¶
type BotRequestBuilder struct {
// contains filtered or unexported fields
}
BotRequestBuilder provides operations to manage the bot property of the microsoft.graph.teamsAppDefinition entity.
func NewBotRequestBuilder ¶
func NewBotRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *BotRequestBuilder
NewBotRequestBuilder instantiates a new BotRequestBuilder and sets the default values.
func NewBotRequestBuilderInternal ¶
func NewBotRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *BotRequestBuilder
NewBotRequestBuilderInternal instantiates a new BotRequestBuilder and sets the default values.
func (*BotRequestBuilder) CreateDeleteRequestInformation ¶
func (m *BotRequestBuilder) CreateDeleteRequestInformation() (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateDeleteRequestInformation delete navigation property bot for appCatalogs
func (*BotRequestBuilder) CreateDeleteRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *BotRequestBuilder) CreateDeleteRequestInformationWithRequestConfiguration(requestConfiguration *BotRequestBuilderDeleteRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateDeleteRequestInformationWithRequestConfiguration delete navigation property bot for appCatalogs
func (*BotRequestBuilder) CreateGetRequestInformation ¶
func (m *BotRequestBuilder) CreateGetRequestInformation() (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation the details of the bot specified in the Teams app manifest.
func (*BotRequestBuilder) CreateGetRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *BotRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *BotRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformationWithRequestConfiguration the details of the bot specified in the Teams app manifest.
func (*BotRequestBuilder) CreatePatchRequestInformation ¶
func (m *BotRequestBuilder) CreatePatchRequestInformation(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePatchRequestInformation update the navigation property bot in appCatalogs
func (*BotRequestBuilder) CreatePatchRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *BotRequestBuilder) CreatePatchRequestInformationWithRequestConfiguration(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable, requestConfiguration *BotRequestBuilderPatchRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePatchRequestInformationWithRequestConfiguration update the navigation property bot in appCatalogs
func (*BotRequestBuilder) Delete ¶
func (m *BotRequestBuilder) Delete() error
Delete delete navigation property bot for appCatalogs
func (*BotRequestBuilder) DeleteWithRequestConfigurationAndResponseHandler ¶ added in v0.22.0
func (m *BotRequestBuilder) DeleteWithRequestConfigurationAndResponseHandler(requestConfiguration *BotRequestBuilderDeleteRequestConfiguration, responseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler) error
DeleteWithRequestConfigurationAndResponseHandler delete navigation property bot for appCatalogs
func (*BotRequestBuilder) Get ¶
func (m *BotRequestBuilder) Get() (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable, error)
Get the details of the bot specified in the Teams app manifest.
func (*BotRequestBuilder) GetWithRequestConfigurationAndResponseHandler ¶ added in v0.22.0
func (m *BotRequestBuilder) GetWithRequestConfigurationAndResponseHandler(requestConfiguration *BotRequestBuilderGetRequestConfiguration, responseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable, error)
GetWithRequestConfigurationAndResponseHandler the details of the bot specified in the Teams app manifest.
func (*BotRequestBuilder) Patch ¶
func (m *BotRequestBuilder) Patch(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable) error
Patch update the navigation property bot in appCatalogs
func (*BotRequestBuilder) PatchWithRequestConfigurationAndResponseHandler ¶ added in v0.22.0
func (m *BotRequestBuilder) PatchWithRequestConfigurationAndResponseHandler(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkBotable, requestConfiguration *BotRequestBuilderPatchRequestConfiguration, responseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler) error
PatchWithRequestConfigurationAndResponseHandler update the navigation property bot in appCatalogs
type BotRequestBuilderDeleteRequestConfiguration ¶ added in v0.22.0
type BotRequestBuilderDeleteRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption }
BotRequestBuilderDeleteRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type BotRequestBuilderGetQueryParameters ¶
type BotRequestBuilderGetQueryParameters struct { // Expand related entities Expand []string `uriparametername:"%24expand"` // Select properties to be returned Select []string `uriparametername:"%24select"` }
BotRequestBuilderGetQueryParameters the details of the bot specified in the Teams app manifest.
type BotRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type BotRequestBuilderGetRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Request query parameters QueryParameters *BotRequestBuilderGetQueryParameters }
BotRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type BotRequestBuilderPatchRequestConfiguration ¶ added in v0.22.0
type BotRequestBuilderPatchRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption }
BotRequestBuilderPatchRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.