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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RelatedContact undocumented
     6  type RelatedContact struct {
     7  	// Object is the base model of RelatedContact
     8  	Object
     9  	// ID undocumented
    10  	ID *string `json:"id,omitempty"`
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// EmailAddress undocumented
    14  	EmailAddress *string `json:"emailAddress,omitempty"`
    15  	// MobilePhone undocumented
    16  	MobilePhone *string `json:"mobilePhone,omitempty"`
    17  	// Relationship undocumented
    18  	Relationship *ContactRelationship `json:"relationship,omitempty"`
    19  	// AccessConsent undocumented
    20  	AccessConsent *bool `json:"accessConsent,omitempty"`
    21  }
    22  
    23  // RelatedPerson undocumented
    24  type RelatedPerson struct {
    25  	// Object is the base model of RelatedPerson
    26  	Object
    27  	// DisplayName undocumented
    28  	DisplayName *string `json:"displayName,omitempty"`
    29  	// Relationship undocumented
    30  	Relationship *PersonRelationship `json:"relationship,omitempty"`
    31  	// UserPrincipalName undocumented
    32  	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
    33  }