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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // ContentType undocumented
     6  type ContentType struct {
     7  	// Entity is the base model of ContentType
     8  	Entity
     9  	// Description undocumented
    10  	Description *string `json:"description,omitempty"`
    11  	// Group undocumented
    12  	Group *string `json:"group,omitempty"`
    13  	// Hidden undocumented
    14  	Hidden *bool `json:"hidden,omitempty"`
    15  	// InheritedFrom undocumented
    16  	InheritedFrom *ItemReference `json:"inheritedFrom,omitempty"`
    17  	// Name undocumented
    18  	Name *string `json:"name,omitempty"`
    19  	// Order undocumented
    20  	Order *ContentTypeOrder `json:"order,omitempty"`
    21  	// ParentID undocumented
    22  	ParentID *string `json:"parentId,omitempty"`
    23  	// ReadOnly undocumented
    24  	ReadOnly *bool `json:"readOnly,omitempty"`
    25  	// Sealed undocumented
    26  	Sealed *bool `json:"sealed,omitempty"`
    27  	// ColumnLinks undocumented
    28  	ColumnLinks []ColumnLink `json:"columnLinks,omitempty"`
    29  }
    30  
    31  // ContentTypeInfo undocumented
    32  type ContentTypeInfo struct {
    33  	// Object is the base model of ContentTypeInfo
    34  	Object
    35  	// ID undocumented
    36  	ID *string `json:"id,omitempty"`
    37  }
    38  
    39  // ContentTypeOrder undocumented
    40  type ContentTypeOrder struct {
    41  	// Object is the base model of ContentTypeOrder
    42  	Object
    43  	// Default undocumented
    44  	Default *bool `json:"default,omitempty"`
    45  	// Position undocumented
    46  	Position *int `json:"position,omitempty"`
    47  }