diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go new file mode 100644 index 00000000..de3688bb --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go @@ -0,0 +1,21 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// EducationResource undocumented +type EducationResource struct { + // Object is the base model of EducationResource + Object + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // CreatedDateTime undocumented + CreatedDateTime *time.Time `json:"createdDateTime,omitempty"` + // CreatedBy undocumented + CreatedBy *IdentitySet `json:"createdBy,omitempty"` + // LastModifiedDateTime undocumented + LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"` + // LastModifiedBy undocumented + LastModifiedBy *IdentitySet `json:"lastModifiedBy,omitempty"` +} |