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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // CommsApplication undocumented
     6  type CommsApplication struct {
     7  	// Entity is the base model of CommsApplication
     8  	Entity
     9  	// Calls undocumented
    10  	Calls []Call `json:"calls,omitempty"`
    11  	// OnlineMeetings undocumented
    12  	OnlineMeetings []OnlineMeeting `json:"onlineMeetings,omitempty"`
    13  }
    14  
    15  // CommsNotification undocumented
    16  type CommsNotification struct {
    17  	// Object is the base model of CommsNotification
    18  	Object
    19  	// ChangeType undocumented
    20  	ChangeType *ChangeType `json:"changeType,omitempty"`
    21  	// ResourceURL undocumented
    22  	ResourceURL *string `json:"resourceUrl,omitempty"`
    23  }
    24  
    25  // CommsNotifications undocumented
    26  type CommsNotifications struct {
    27  	// Object is the base model of CommsNotifications
    28  	Object
    29  	// Value undocumented
    30  	Value []CommsNotification `json:"value,omitempty"`
    31  }
    32  
    33  // CommsOperation undocumented
    34  type CommsOperation struct {
    35  	// Entity is the base model of CommsOperation
    36  	Entity
    37  	// Status undocumented
    38  	Status *OperationStatus `json:"status,omitempty"`
    39  	// ClientContext undocumented
    40  	ClientContext *string `json:"clientContext,omitempty"`
    41  	// ResultInfo undocumented
    42  	ResultInfo *ResultInfo `json:"resultInfo,omitempty"`
    43  }