summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go75
1 files changed, 75 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go
new file mode 100644
index 00000000..a0957a76
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go
@@ -0,0 +1,75 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// External undocumented
+type External struct {
+ // Entity is the base model of External
+ Entity
+ // Connections undocumented
+ Connections []ExternalConnection `json:"connections,omitempty"`
+}
+
+// ExternalConnection undocumented
+type ExternalConnection struct {
+ // Entity is the base model of ExternalConnection
+ Entity
+ // Name undocumented
+ Name *string `json:"name,omitempty"`
+ // Description undocumented
+ Description *string `json:"description,omitempty"`
+ // Configuration undocumented
+ Configuration *Configuration `json:"configuration,omitempty"`
+ // Schema undocumented
+ Schema *Schema `json:"schema,omitempty"`
+ // Items undocumented
+ Items []ExternalItem `json:"items,omitempty"`
+ // Operations undocumented
+ Operations []ConnectionOperation `json:"operations,omitempty"`
+}
+
+// ExternalFile undocumented
+type ExternalFile struct {
+ // ExternalItem is the base model of ExternalFile
+ ExternalItem
+ // CreatedDateTime undocumented
+ CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
+ // ModifiedDateTime undocumented
+ ModifiedDateTime *time.Time `json:"modifiedDateTime,omitempty"`
+ // CreatedBy undocumented
+ CreatedBy *string `json:"createdBy,omitempty"`
+ // LastModifiedBy undocumented
+ LastModifiedBy *string `json:"lastModifiedBy,omitempty"`
+ // Title undocumented
+ Title *string `json:"title,omitempty"`
+ // URL undocumented
+ URL *string `json:"url,omitempty"`
+ // Name undocumented
+ Name *string `json:"name,omitempty"`
+ // Extension undocumented
+ Extension *string `json:"extension,omitempty"`
+ // Size undocumented
+ Size *int `json:"size,omitempty"`
+}
+
+// ExternalItem undocumented
+type ExternalItem struct {
+ // Entity is the base model of ExternalItem
+ Entity
+ // Properties undocumented
+ Properties *Properties `json:"properties,omitempty"`
+ // Content undocumented
+ Content *string `json:"content,omitempty"`
+ // ACL undocumented
+ ACL []ACL `json:"acl,omitempty"`
+}
+
+// ExternalLink undocumented
+type ExternalLink struct {
+ // Object is the base model of ExternalLink
+ Object
+ // Href undocumented
+ Href *string `json:"href,omitempty"`
+}