github.com/yaegashi/msgraph.go@v0.1.4/v1.0/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  	// MediaStreams undocumented
    12  	MediaStreams []MediaStream `json:"mediaStreams,omitempty"`
    13  	// IsMuted undocumented
    14  	IsMuted *bool `json:"isMuted,omitempty"`
    15  	// IsInLobby undocumented
    16  	IsInLobby *bool `json:"isInLobby,omitempty"`
    17  }
    18  
    19  // ParticipantInfo undocumented
    20  type ParticipantInfo struct {
    21  	// Object is the base model of ParticipantInfo
    22  	Object
    23  	// Identity undocumented
    24  	Identity *IdentitySet `json:"identity,omitempty"`
    25  	// Region undocumented
    26  	Region *string `json:"region,omitempty"`
    27  	// LanguageID undocumented
    28  	LanguageID *string `json:"languageId,omitempty"`
    29  }