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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // JobResponseBase undocumented
     8  type JobResponseBase struct {
     9  	// Entity is the base model of JobResponseBase
    10  	Entity
    11  	// Type undocumented
    12  	Type *string `json:"type,omitempty"`
    13  	// Status undocumented
    14  	Status *string `json:"status,omitempty"`
    15  	// TenantID undocumented
    16  	TenantID *string `json:"tenantId,omitempty"`
    17  	// CreationDateTime undocumented
    18  	CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
    19  	// StartDateTime undocumented
    20  	StartDateTime *time.Time `json:"startDateTime,omitempty"`
    21  	// EndDateTime undocumented
    22  	EndDateTime *time.Time `json:"endDateTime,omitempty"`
    23  	// Error undocumented
    24  	Error *ClassificationError `json:"error,omitempty"`
    25  }