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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // ProjectParticipation undocumented
     6  type ProjectParticipation struct {
     7  	// ItemFacet is the base model of ProjectParticipation
     8  	ItemFacet
     9  	// Categories undocumented
    10  	Categories []string `json:"categories,omitempty"`
    11  	// Client undocumented
    12  	Client *CompanyDetail `json:"client,omitempty"`
    13  	// DisplayName undocumented
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  	// Detail undocumented
    16  	Detail *PositionDetail `json:"detail,omitempty"`
    17  	// Colleagues undocumented
    18  	Colleagues []RelatedPerson `json:"colleagues,omitempty"`
    19  	// Sponsors undocumented
    20  	Sponsors []RelatedPerson `json:"sponsors,omitempty"`
    21  }