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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Profile undocumented
     6  type Profile struct {
     7  	// Entity is the base model of Profile
     8  	Entity
     9  	// Account undocumented
    10  	Account []UserAccountInformation `json:"account,omitempty"`
    11  	// Anniversaries undocumented
    12  	Anniversaries []PersonAnniversary `json:"anniversaries,omitempty"`
    13  	// EducationalActivities undocumented
    14  	EducationalActivities []EducationalActivity `json:"educationalActivities,omitempty"`
    15  	// Emails undocumented
    16  	Emails []ItemEmail `json:"emails,omitempty"`
    17  	// Interests undocumented
    18  	Interests []PersonInterest `json:"interests,omitempty"`
    19  	// Languages undocumented
    20  	Languages []LanguageProficiency `json:"languages,omitempty"`
    21  	// Names undocumented
    22  	Names []PersonName `json:"names,omitempty"`
    23  	// Phones undocumented
    24  	Phones []ItemPhone `json:"phones,omitempty"`
    25  	// Positions undocumented
    26  	Positions []WorkPosition `json:"positions,omitempty"`
    27  	// Projects undocumented
    28  	Projects []ProjectParticipation `json:"projects,omitempty"`
    29  	// Skills undocumented
    30  	Skills []SkillProficiency `json:"skills,omitempty"`
    31  	// WebAccounts undocumented
    32  	WebAccounts []WebAccount `json:"webAccounts,omitempty"`
    33  	// Websites undocumented
    34  	Websites []PersonWebsite `json:"websites,omitempty"`
    35  }
    36  
    37  // ProfilePhoto undocumented
    38  type ProfilePhoto struct {
    39  	// Entity is the base model of ProfilePhoto
    40  	Entity
    41  	// Height undocumented
    42  	Height *int `json:"height,omitempty"`
    43  	// Width undocumented
    44  	Width *int `json:"width,omitempty"`
    45  }