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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // OutlookCategory undocumented
     8  type OutlookCategory struct {
     9  	// Entity is the base model of OutlookCategory
    10  	Entity
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// Color undocumented
    14  	Color *CategoryColor `json:"color,omitempty"`
    15  }
    16  
    17  // OutlookGeoCoordinates undocumented
    18  type OutlookGeoCoordinates struct {
    19  	// Object is the base model of OutlookGeoCoordinates
    20  	Object
    21  	// Latitude undocumented
    22  	Latitude *float64 `json:"latitude,omitempty"`
    23  	// Longitude undocumented
    24  	Longitude *float64 `json:"longitude,omitempty"`
    25  	// Accuracy undocumented
    26  	Accuracy *float64 `json:"accuracy,omitempty"`
    27  	// Altitude undocumented
    28  	Altitude *float64 `json:"altitude,omitempty"`
    29  	// AltitudeAccuracy undocumented
    30  	AltitudeAccuracy *float64 `json:"altitudeAccuracy,omitempty"`
    31  }
    32  
    33  // OutlookItem undocumented
    34  type OutlookItem struct {
    35  	// Entity is the base model of OutlookItem
    36  	Entity
    37  	// CreatedDateTime undocumented
    38  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    39  	// LastModifiedDateTime undocumented
    40  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    41  	// ChangeKey undocumented
    42  	ChangeKey *string `json:"changeKey,omitempty"`
    43  	// Categories undocumented
    44  	Categories []string `json:"categories,omitempty"`
    45  }
    46  
    47  // OutlookUser undocumented
    48  type OutlookUser struct {
    49  	// Entity is the base model of OutlookUser
    50  	Entity
    51  	// MasterCategories undocumented
    52  	MasterCategories []OutlookCategory `json:"masterCategories,omitempty"`
    53  }