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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // ThreatAssessmentRequestObject undocumented
     8  type ThreatAssessmentRequestObject struct {
     9  	// Entity is the base model of ThreatAssessmentRequestObject
    10  	Entity
    11  	// CreatedDateTime undocumented
    12  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    13  	// ContentType undocumented
    14  	ContentType *ThreatAssessmentContentType `json:"contentType,omitempty"`
    15  	// ExpectedAssessment undocumented
    16  	ExpectedAssessment *ThreatExpectedAssessment `json:"expectedAssessment,omitempty"`
    17  	// Category undocumented
    18  	Category *ThreatCategory `json:"category,omitempty"`
    19  	// Status undocumented
    20  	Status *ThreatAssessmentStatus `json:"status,omitempty"`
    21  	// RequestSource undocumented
    22  	RequestSource *ThreatAssessmentRequestSource `json:"requestSource,omitempty"`
    23  	// CreatedBy undocumented
    24  	CreatedBy *IdentitySet `json:"createdBy,omitempty"`
    25  	// Results undocumented
    26  	Results []ThreatAssessmentResult `json:"results,omitempty"`
    27  }
    28  
    29  // ThreatAssessmentRequestsCount undocumented
    30  type ThreatAssessmentRequestsCount struct {
    31  	// Object is the base model of ThreatAssessmentRequestsCount
    32  	Object
    33  	// CreatedDateTime undocumented
    34  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    35  	// PivotValue undocumented
    36  	PivotValue *string `json:"pivotValue,omitempty"`
    37  	// Count undocumented
    38  	Count *int `json:"count,omitempty"`
    39  }
    40  
    41  // ThreatAssessmentResult undocumented
    42  type ThreatAssessmentResult struct {
    43  	// Entity is the base model of ThreatAssessmentResult
    44  	Entity
    45  	// CreatedDateTime undocumented
    46  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    47  	// ResultType undocumented
    48  	ResultType *ThreatAssessmentResultType `json:"resultType,omitempty"`
    49  	// Message undocumented
    50  	Message *string `json:"message,omitempty"`
    51  }