1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ColumnDefinition undocumented
type ColumnDefinition struct {
// Entity is the base model of ColumnDefinition
Entity
// Boolean undocumented
Boolean *BooleanColumn `json:"boolean,omitempty"`
// Calculated undocumented
Calculated *CalculatedColumn `json:"calculated,omitempty"`
// Choice undocumented
Choice *ChoiceColumn `json:"choice,omitempty"`
// ColumnGroup undocumented
ColumnGroup *string `json:"columnGroup,omitempty"`
// Currency undocumented
Currency *CurrencyColumn `json:"currency,omitempty"`
// DateTime undocumented
DateTime *DateTimeColumn `json:"dateTime,omitempty"`
// DefaultValue undocumented
DefaultValue *DefaultColumnValue `json:"defaultValue,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// EnforceUniqueValues undocumented
EnforceUniqueValues *bool `json:"enforceUniqueValues,omitempty"`
// Geolocation undocumented
Geolocation *GeolocationColumn `json:"geolocation,omitempty"`
// Hidden undocumented
Hidden *bool `json:"hidden,omitempty"`
// Indexed undocumented
Indexed *bool `json:"indexed,omitempty"`
// Lookup undocumented
Lookup *LookupColumn `json:"lookup,omitempty"`
// Name undocumented
Name *string `json:"name,omitempty"`
// Number undocumented
Number *NumberColumn `json:"number,omitempty"`
// PersonOrGroup undocumented
PersonOrGroup *PersonOrGroupColumn `json:"personOrGroup,omitempty"`
// ReadOnly undocumented
ReadOnly *bool `json:"readOnly,omitempty"`
// Required undocumented
Required *bool `json:"required,omitempty"`
// Text undocumented
Text *TextColumn `json:"text,omitempty"`
}
|