summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go
deleted file mode 100644
index 5e67c216..00000000
--- a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go
+++ /dev/null
@@ -1,35 +0,0 @@
-// Code generated by msgraph-generate.go DO NOT EDIT.
-
-package msgraph
-
-import "context"
-
-// TeamsAppInstallationUpgradeRequestParameter undocumented
-type TeamsAppInstallationUpgradeRequestParameter struct {
-}
-
-//
-type TeamsAppInstallationUpgradeRequestBuilder struct{ BaseRequestBuilder }
-
-// Upgrade action undocumented
-func (b *TeamsAppInstallationRequestBuilder) Upgrade(reqObj *TeamsAppInstallationUpgradeRequestParameter) *TeamsAppInstallationUpgradeRequestBuilder {
- bb := &TeamsAppInstallationUpgradeRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
- bb.BaseRequestBuilder.baseURL += "/upgrade"
- bb.BaseRequestBuilder.requestObject = reqObj
- return bb
-}
-
-//
-type TeamsAppInstallationUpgradeRequest struct{ BaseRequest }
-
-//
-func (b *TeamsAppInstallationUpgradeRequestBuilder) Request() *TeamsAppInstallationUpgradeRequest {
- return &TeamsAppInstallationUpgradeRequest{
- BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
- }
-}
-
-//
-func (r *TeamsAppInstallationUpgradeRequest) Post(ctx context.Context) error {
- return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
-}