github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelList.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // List undocumented
     6  type List struct {
     7  	// BaseItem is the base model of List
     8  	BaseItem
     9  	// DisplayName undocumented
    10  	DisplayName *string `json:"displayName,omitempty"`
    11  	// List undocumented
    12  	List *ListInfo `json:"list,omitempty"`
    13  	// SharepointIDs undocumented
    14  	SharepointIDs *SharepointIDs `json:"sharepointIds,omitempty"`
    15  	// System undocumented
    16  	System *SystemFacet `json:"system,omitempty"`
    17  	// Activities undocumented
    18  	Activities []ItemActivityOLD `json:"activities,omitempty"`
    19  	// Columns undocumented
    20  	Columns []ColumnDefinition `json:"columns,omitempty"`
    21  	// ContentTypes undocumented
    22  	ContentTypes []ContentType `json:"contentTypes,omitempty"`
    23  	// Drive undocumented
    24  	Drive *Drive `json:"drive,omitempty"`
    25  	// Items undocumented
    26  	Items []ListItem `json:"items,omitempty"`
    27  	// Subscriptions undocumented
    28  	Subscriptions []Subscription `json:"subscriptions,omitempty"`
    29  }
    30  
    31  // ListInfo undocumented
    32  type ListInfo struct {
    33  	// Object is the base model of ListInfo
    34  	Object
    35  	// ContentTypesEnabled undocumented
    36  	ContentTypesEnabled *bool `json:"contentTypesEnabled,omitempty"`
    37  	// Hidden undocumented
    38  	Hidden *bool `json:"hidden,omitempty"`
    39  	// Template undocumented
    40  	Template *string `json:"template,omitempty"`
    41  }
    42  
    43  // ListItem undocumented
    44  type ListItem struct {
    45  	// BaseItem is the base model of ListItem
    46  	BaseItem
    47  	// ContentType undocumented
    48  	ContentType *ContentTypeInfo `json:"contentType,omitempty"`
    49  	// SharepointIDs undocumented
    50  	SharepointIDs *SharepointIDs `json:"sharepointIds,omitempty"`
    51  	// Activities undocumented
    52  	Activities []ItemActivityOLD `json:"activities,omitempty"`
    53  	// Analytics undocumented
    54  	Analytics *ItemAnalytics `json:"analytics,omitempty"`
    55  	// DriveItem undocumented
    56  	DriveItem *DriveItem `json:"driveItem,omitempty"`
    57  	// Fields undocumented
    58  	Fields *FieldValueSet `json:"fields,omitempty"`
    59  	// Versions undocumented
    60  	Versions []ListItemVersion `json:"versions,omitempty"`
    61  }
    62  
    63  // ListItemVersion undocumented
    64  type ListItemVersion struct {
    65  	// BaseItemVersion is the base model of ListItemVersion
    66  	BaseItemVersion
    67  	// Fields undocumented
    68  	Fields *FieldValueSet `json:"fields,omitempty"`
    69  }