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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // PendingContentUpdate undocumented
     8  type PendingContentUpdate struct {
     9  	// Object is the base model of PendingContentUpdate
    10  	Object
    11  	// QueuedDateTime undocumented
    12  	QueuedDateTime *time.Time `json:"queuedDateTime,omitempty"`
    13  }
    14  
    15  // PendingOperations undocumented
    16  type PendingOperations struct {
    17  	// Object is the base model of PendingOperations
    18  	Object
    19  	// PendingContentUpdate undocumented
    20  	PendingContentUpdate *PendingContentUpdate `json:"pendingContentUpdate,omitempty"`
    21  }