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

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