summaryrefslogtreecommitdiff
path: root/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.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/ModelLocation.go
parent58d5e7cfda4781d8a57ec52aefd02983835c301a (diff)
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go')
-rw-r--r--teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go51
1 files changed, 51 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go
new file mode 100644
index 0000000..830c26a
--- /dev/null
+++ b/teleirc/matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go
@@ -0,0 +1,51 @@
+// Code generated by msgraph.go/gen DO NOT EDIT.
+
+package msgraph
+
+// Location undocumented
+type Location struct {
+ // Object is the base model of Location
+ Object
+ // DisplayName undocumented
+ DisplayName *string `json:"displayName,omitempty"`
+ // LocationEmailAddress undocumented
+ LocationEmailAddress *string `json:"locationEmailAddress,omitempty"`
+ // Address undocumented
+ Address *PhysicalAddress `json:"address,omitempty"`
+ // Coordinates undocumented
+ Coordinates *OutlookGeoCoordinates `json:"coordinates,omitempty"`
+ // LocationURI undocumented
+ LocationURI *string `json:"locationUri,omitempty"`
+ // LocationType undocumented
+ LocationType *LocationType `json:"locationType,omitempty"`
+ // UniqueID undocumented
+ UniqueID *string `json:"uniqueId,omitempty"`
+ // UniqueIDType undocumented
+ UniqueIDType *LocationUniqueIDType `json:"uniqueIdType,omitempty"`
+}
+
+// LocationConstraint undocumented
+type LocationConstraint struct {
+ // Object is the base model of LocationConstraint
+ Object
+ // Locations undocumented
+ Locations []LocationConstraintItem `json:"locations,omitempty"`
+ // IsRequired undocumented
+ IsRequired *bool `json:"isRequired,omitempty"`
+ // SuggestLocation undocumented
+ SuggestLocation *bool `json:"suggestLocation,omitempty"`
+}
+
+// LocationConstraintItem undocumented
+type LocationConstraintItem struct {
+ // Location is the base model of LocationConstraintItem
+ Location
+ // ResolveAvailability undocumented
+ ResolveAvailability *bool `json:"resolveAvailability,omitempty"`
+}
+
+// LocationManagementCondition Contains the information to define a location management condition, an area of interest, to monitor.
+type LocationManagementCondition struct {
+ // ManagementCondition is the base model of LocationManagementCondition
+ ManagementCondition
+}