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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Participant undocumented
     6  type Participant struct {
     7  	// Entity is the base model of Participant
     8  	Entity
     9  	// Info undocumented
    10  	Info *ParticipantInfo `json:"info,omitempty"`
    11  	// RecordingInfo undocumented
    12  	RecordingInfo *RecordingInfo `json:"recordingInfo,omitempty"`
    13  	// MediaStreams undocumented
    14  	MediaStreams []MediaStream `json:"mediaStreams,omitempty"`
    15  	// Metadata undocumented
    16  	Metadata *string `json:"metadata,omitempty"`
    17  	// IsMuted undocumented
    18  	IsMuted *bool `json:"isMuted,omitempty"`
    19  	// IsInLobby undocumented
    20  	IsInLobby *bool `json:"isInLobby,omitempty"`
    21  }
    22  
    23  // ParticipantInfo undocumented
    24  type ParticipantInfo struct {
    25  	// Object is the base model of ParticipantInfo
    26  	Object
    27  	// Identity undocumented
    28  	Identity *IdentitySet `json:"identity,omitempty"`
    29  	// EndpointType undocumented
    30  	EndpointType *EndpointType `json:"endpointType,omitempty"`
    31  	// Region undocumented
    32  	Region *string `json:"region,omitempty"`
    33  	// LanguageID undocumented
    34  	LanguageID *string `json:"languageId,omitempty"`
    35  	// CountryCode undocumented
    36  	CountryCode *string `json:"countryCode,omitempty"`
    37  }