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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // ActivityHistoryItem undocumented
     8  type ActivityHistoryItem struct {
     9  	// Entity is the base model of ActivityHistoryItem
    10  	Entity
    11  	// Status undocumented
    12  	Status *Status `json:"status,omitempty"`
    13  	// ActiveDurationSeconds undocumented
    14  	ActiveDurationSeconds *int `json:"activeDurationSeconds,omitempty"`
    15  	// CreatedDateTime undocumented
    16  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    17  	// LastActiveDateTime undocumented
    18  	LastActiveDateTime *time.Time `json:"lastActiveDateTime,omitempty"`
    19  	// LastModifiedDateTime undocumented
    20  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    21  	// ExpirationDateTime undocumented
    22  	ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
    23  	// StartedDateTime undocumented
    24  	StartedDateTime *time.Time `json:"startedDateTime,omitempty"`
    25  	// UserTimezone undocumented
    26  	UserTimezone *string `json:"userTimezone,omitempty"`
    27  	// Activity undocumented
    28  	Activity *UserActivity `json:"activity,omitempty"`
    29  }
    30  
    31  // ActivityStatistics undocumented
    32  type ActivityStatistics struct {
    33  	// Entity is the base model of ActivityStatistics
    34  	Entity
    35  	// Activity undocumented
    36  	Activity *AnalyticsActivityType `json:"activity,omitempty"`
    37  	// StartDate undocumented
    38  	StartDate *Date `json:"startDate,omitempty"`
    39  	// EndDate undocumented
    40  	EndDate *Date `json:"endDate,omitempty"`
    41  	// TimeZoneUsed undocumented
    42  	TimeZoneUsed *string `json:"timeZoneUsed,omitempty"`
    43  	// Duration undocumented
    44  	Duration *Duration `json:"duration,omitempty"`
    45  }