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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // PositionDetail undocumented
     6  type PositionDetail struct {
     7  	// Object is the base model of PositionDetail
     8  	Object
     9  	// Company undocumented
    10  	Company *CompanyDetail `json:"company,omitempty"`
    11  	// Description undocumented
    12  	Description *string `json:"description,omitempty"`
    13  	// EndMonthYear undocumented
    14  	EndMonthYear *Date `json:"endMonthYear,omitempty"`
    15  	// JobTitle undocumented
    16  	JobTitle *string `json:"jobTitle,omitempty"`
    17  	// Role undocumented
    18  	Role *string `json:"role,omitempty"`
    19  	// StartMonthYear undocumented
    20  	StartMonthYear *Date `json:"startMonthYear,omitempty"`
    21  	// Summary undocumented
    22  	Summary *string `json:"summary,omitempty"`
    23  }