diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-03-15 22:43:46 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-22 00:02:48 +0100 |
commit | 76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch) | |
tree | af3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go | |
parent | 802c80f40c709ba4967de317e40a8d6abe57f6be (diff) | |
download | matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2 matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip |
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go new file mode 100644 index 00000000..72bdbcf9 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go @@ -0,0 +1,105 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// Contact undocumented +type Contact struct { + // OutlookItem is the base model of Contact + OutlookItem + // ParentFolderID undocumented + ParentFolderID *string `json:"parentFolderId,omitempty"` + // Birthday undocumented + Birthday *time.Time `json:"birthday,omitempty"` + // FileAs undocumented + FileAs *string `json:"fileAs,omitempty"` + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // GivenName undocumented + GivenName *string `json:"givenName,omitempty"` + // Initials undocumented + Initials *string `json:"initials,omitempty"` + // MiddleName undocumented + MiddleName *string `json:"middleName,omitempty"` + // NickName undocumented + NickName *string `json:"nickName,omitempty"` + // Surname undocumented + Surname *string `json:"surname,omitempty"` + // Title undocumented + Title *string `json:"title,omitempty"` + // YomiGivenName undocumented + YomiGivenName *string `json:"yomiGivenName,omitempty"` + // YomiSurname undocumented + YomiSurname *string `json:"yomiSurname,omitempty"` + // YomiCompanyName undocumented + YomiCompanyName *string `json:"yomiCompanyName,omitempty"` + // Generation undocumented + Generation *string `json:"generation,omitempty"` + // EmailAddresses undocumented + EmailAddresses []TypedEmailAddress `json:"emailAddresses,omitempty"` + // Websites undocumented + Websites []Website `json:"websites,omitempty"` + // ImAddresses undocumented + ImAddresses []string `json:"imAddresses,omitempty"` + // JobTitle undocumented + JobTitle *string `json:"jobTitle,omitempty"` + // CompanyName undocumented + CompanyName *string `json:"companyName,omitempty"` + // Department undocumented + Department *string `json:"department,omitempty"` + // OfficeLocation undocumented + OfficeLocation *string `json:"officeLocation,omitempty"` + // Profession undocumented + Profession *string `json:"profession,omitempty"` + // AssistantName undocumented + AssistantName *string `json:"assistantName,omitempty"` + // Manager undocumented + Manager *string `json:"manager,omitempty"` + // Phones undocumented + Phones []Phone `json:"phones,omitempty"` + // PostalAddresses undocumented + PostalAddresses []PhysicalAddress `json:"postalAddresses,omitempty"` + // SpouseName undocumented + SpouseName *string `json:"spouseName,omitempty"` + // PersonalNotes undocumented + PersonalNotes *string `json:"personalNotes,omitempty"` + // Children undocumented + Children []string `json:"children,omitempty"` + // WeddingAnniversary undocumented + WeddingAnniversary *Date `json:"weddingAnniversary,omitempty"` + // Gender undocumented + Gender *string `json:"gender,omitempty"` + // IsFavorite undocumented + IsFavorite *bool `json:"isFavorite,omitempty"` + // Flag undocumented + Flag *FollowupFlag `json:"flag,omitempty"` + // SingleValueExtendedProperties undocumented + SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"` + // MultiValueExtendedProperties undocumented + MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"` + // Photo undocumented + Photo *ProfilePhoto `json:"photo,omitempty"` + // Extensions undocumented + Extensions []Extension `json:"extensions,omitempty"` +} + +// ContactFolder undocumented +type ContactFolder struct { + // Entity is the base model of ContactFolder + Entity + // ParentFolderID undocumented + ParentFolderID *string `json:"parentFolderId,omitempty"` + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // WellKnownName undocumented + WellKnownName *string `json:"wellKnownName,omitempty"` + // SingleValueExtendedProperties undocumented + SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"` + // MultiValueExtendedProperties undocumented + MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"` + // Contacts undocumented + Contacts []Contact `json:"contacts,omitempty"` + // ChildFolders undocumented + ChildFolders []ContactFolder `json:"childFolders,omitempty"` +} |