summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go
diff options
context:
space:
mode:
authorQais Patankar <qaisjp@gmail.com>2020-03-15 22:43:46 +0000
committerWim <wim@42.be>2020-03-22 00:02:48 +0100
commit76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch)
treeaf3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go
parent802c80f40c709ba4967de317e40a8d6abe57f6be (diff)
downloadmatterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go63
1 files changed, 63 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go
new file mode 100644
index 00000000..2fd0de15
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go
@@ -0,0 +1,63 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// Shift undocumented
+type Shift struct {
+ // ChangeTrackedEntity is the base model of Shift
+ ChangeTrackedEntity
+ // SharedShift undocumented
+ SharedShift *ShiftItem `json:"sharedShift,omitempty"`
+ // DraftShift undocumented
+ DraftShift *ShiftItem `json:"draftShift,omitempty"`
+ // UserID undocumented
+ UserID *string `json:"userId,omitempty"`
+ // SchedulingGroupID undocumented
+ SchedulingGroupID *string `json:"schedulingGroupId,omitempty"`
+}
+
+// ShiftActivity undocumented
+type ShiftActivity struct {
+ // Object is the base model of ShiftActivity
+ Object
+ // IsPaid undocumented
+ IsPaid *bool `json:"isPaid,omitempty"`
+ // StartDateTime undocumented
+ StartDateTime *time.Time `json:"startDateTime,omitempty"`
+ // EndDateTime undocumented
+ EndDateTime *time.Time `json:"endDateTime,omitempty"`
+ // Code undocumented
+ Code *string `json:"code,omitempty"`
+ // DisplayName undocumented
+ DisplayName *string `json:"displayName,omitempty"`
+ // Theme undocumented
+ Theme *ScheduleEntityTheme `json:"theme,omitempty"`
+}
+
+// ShiftChangeRequestObject undocumented
+type ShiftChangeRequestObject struct {
+ // ScheduleChangeRequestObject is the base model of ShiftChangeRequestObject
+ ScheduleChangeRequestObject
+ // RecipientActionMessage undocumented
+ RecipientActionMessage *string `json:"recipientActionMessage,omitempty"`
+ // RecipientActionDateTime undocumented
+ RecipientActionDateTime *time.Time `json:"recipientActionDateTime,omitempty"`
+ // SenderShiftID undocumented
+ SenderShiftID *string `json:"senderShiftId,omitempty"`
+ // RecipientUserID undocumented
+ RecipientUserID *string `json:"recipientUserId,omitempty"`
+}
+
+// ShiftItem undocumented
+type ShiftItem struct {
+ // ScheduleEntity is the base model of ShiftItem
+ ScheduleEntity
+ // DisplayName undocumented
+ DisplayName *string `json:"displayName,omitempty"`
+ // Notes undocumented
+ Notes *string `json:"notes,omitempty"`
+ // Activities undocumented
+ Activities []ShiftActivity `json:"activities,omitempty"`
+}