github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelBase.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // BaseItem undocumented
     8  type BaseItem struct {
     9  	// Entity is the base model of BaseItem
    10  	Entity
    11  	// CreatedBy undocumented
    12  	CreatedBy *IdentitySet `json:"createdBy,omitempty"`
    13  	// CreatedDateTime undocumented
    14  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    15  	// Description undocumented
    16  	Description *string `json:"description,omitempty"`
    17  	// ETag undocumented
    18  	ETag *string `json:"eTag,omitempty"`
    19  	// LastModifiedBy undocumented
    20  	LastModifiedBy *IdentitySet `json:"lastModifiedBy,omitempty"`
    21  	// LastModifiedDateTime undocumented
    22  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    23  	// Name undocumented
    24  	Name *string `json:"name,omitempty"`
    25  	// ParentReference undocumented
    26  	ParentReference *ItemReference `json:"parentReference,omitempty"`
    27  	// WebURL undocumented
    28  	WebURL *string `json:"webUrl,omitempty"`
    29  	// CreatedByUser undocumented
    30  	CreatedByUser *User `json:"createdByUser,omitempty"`
    31  	// LastModifiedByUser undocumented
    32  	LastModifiedByUser *User `json:"lastModifiedByUser,omitempty"`
    33  }
    34  
    35  // BaseItemVersion undocumented
    36  type BaseItemVersion struct {
    37  	// Entity is the base model of BaseItemVersion
    38  	Entity
    39  	// LastModifiedBy undocumented
    40  	LastModifiedBy *IdentitySet `json:"lastModifiedBy,omitempty"`
    41  	// LastModifiedDateTime undocumented
    42  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    43  	// Publication undocumented
    44  	Publication *PublicationFacet `json:"publication,omitempty"`
    45  }