blob: 454df9b0d3466168211a13d5cbab2fdd43628fe1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// ManagedEBookCategory Contains properties for a single Intune eBook category.
type ManagedEBookCategory struct {
// Entity is the base model of ManagedEBookCategory
Entity
// DisplayName The name of the eBook category.
DisplayName *string `json:"displayName,omitempty"`
// LastModifiedDateTime The date and time the ManagedEBookCategory was last modified.
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
}
|