summaryrefslogtreecommitdiff
path: root/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-11-02 15:27:18 +0800
committerMistivia <i@mistivia.com>2025-11-02 15:27:18 +0800
commite9c24f4af7ed56760f6db7941827d09f6db9020b (patch)
tree62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go
parent58d5e7cfda4781d8a57ec52aefd02983835c301a (diff)
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go')
-rw-r--r--teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go
new file mode 100644
index 0000000..42a8552
--- /dev/null
+++ b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go
@@ -0,0 +1,55 @@
+// Code generated by msgraph.go/gen DO NOT EDIT.
+
+package msgraph
+
+// WebAccount undocumented
+type WebAccount struct {
+ // ItemFacet is the base model of WebAccount
+ ItemFacet
+ // Description undocumented
+ Description *string `json:"description,omitempty"`
+ // UserID undocumented
+ UserID *string `json:"userId,omitempty"`
+ // Service undocumented
+ Service *ServiceInformation `json:"service,omitempty"`
+ // StatusMessage undocumented
+ StatusMessage *string `json:"statusMessage,omitempty"`
+ // WebURL undocumented
+ WebURL *string `json:"webUrl,omitempty"`
+}
+
+// WebApp Contains properties and inherited properties for web apps.
+type WebApp struct {
+ // MobileApp is the base model of WebApp
+ MobileApp
+ // AppURL The web app URL.
+ AppURL *string `json:"appUrl,omitempty"`
+ // UseManagedBrowser Whether or not to use managed browser. This property is only applicable for Android and IOS.
+ UseManagedBrowser *bool `json:"useManagedBrowser,omitempty"`
+}
+
+// WebApplication undocumented
+type WebApplication struct {
+ // Object is the base model of WebApplication
+ Object
+ // HomePageURL undocumented
+ HomePageURL *string `json:"homePageUrl,omitempty"`
+ // RedirectUris undocumented
+ RedirectUris []string `json:"redirectUris,omitempty"`
+ // OAuth2AllowImplicitFlow undocumented
+ OAuth2AllowImplicitFlow *bool `json:"oauth2AllowImplicitFlow,omitempty"`
+ // LogoutURL undocumented
+ LogoutURL *string `json:"logoutUrl,omitempty"`
+ // ImplicitGrantSettings undocumented
+ ImplicitGrantSettings *ImplicitGrantSettings `json:"implicitGrantSettings,omitempty"`
+}
+
+// WebPart undocumented
+type WebPart struct {
+ // Object is the base model of WebPart
+ Object
+ // Type undocumented
+ Type *string `json:"type,omitempty"`
+ // Data undocumented
+ Data *SitePageData `json:"data,omitempty"`
+}