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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // OrgContact undocumented
     8  type OrgContact struct {
     9  	// DirectoryObject is the base model of OrgContact
    10  	DirectoryObject
    11  	// Addresses undocumented
    12  	Addresses []PhysicalOfficeAddress `json:"addresses,omitempty"`
    13  	// CompanyName undocumented
    14  	CompanyName *string `json:"companyName,omitempty"`
    15  	// Department undocumented
    16  	Department *string `json:"department,omitempty"`
    17  	// DisplayName undocumented
    18  	DisplayName *string `json:"displayName,omitempty"`
    19  	// GivenName undocumented
    20  	GivenName *string `json:"givenName,omitempty"`
    21  	// JobTitle undocumented
    22  	JobTitle *string `json:"jobTitle,omitempty"`
    23  	// Mail undocumented
    24  	Mail *string `json:"mail,omitempty"`
    25  	// MailNickname undocumented
    26  	MailNickname *string `json:"mailNickname,omitempty"`
    27  	// OnPremisesSyncEnabled undocumented
    28  	OnPremisesSyncEnabled *bool `json:"onPremisesSyncEnabled,omitempty"`
    29  	// OnPremisesLastSyncDateTime undocumented
    30  	OnPremisesLastSyncDateTime *time.Time `json:"onPremisesLastSyncDateTime,omitempty"`
    31  	// OnPremisesProvisioningErrors undocumented
    32  	OnPremisesProvisioningErrors []OnPremisesProvisioningError `json:"onPremisesProvisioningErrors,omitempty"`
    33  	// Phones undocumented
    34  	Phones []Phone `json:"phones,omitempty"`
    35  	// ProxyAddresses undocumented
    36  	ProxyAddresses []string `json:"proxyAddresses,omitempty"`
    37  	// Surname undocumented
    38  	Surname *string `json:"surname,omitempty"`
    39  	// Manager undocumented
    40  	Manager *DirectoryObject `json:"manager,omitempty"`
    41  	// DirectReports undocumented
    42  	DirectReports []DirectoryObject `json:"directReports,omitempty"`
    43  	// MemberOf undocumented
    44  	MemberOf []DirectoryObject `json:"memberOf,omitempty"`
    45  	// TransitiveMemberOf undocumented
    46  	TransitiveMemberOf []DirectoryObject `json:"transitiveMemberOf,omitempty"`
    47  }