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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Operation undocumented
     8  type Operation struct {
     9  	// Entity is the base model of Operation
    10  	Entity
    11  	// Status undocumented
    12  	Status *OperationStatus `json:"status,omitempty"`
    13  	// CreatedDateTime undocumented
    14  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    15  	// LastActionDateTime undocumented
    16  	LastActionDateTime *time.Time `json:"lastActionDateTime,omitempty"`
    17  }
    18  
    19  // OperationError undocumented
    20  type OperationError struct {
    21  	// Object is the base model of OperationError
    22  	Object
    23  	// Code undocumented
    24  	Code *string `json:"code,omitempty"`
    25  	// Message undocumented
    26  	Message *string `json:"message,omitempty"`
    27  }