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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // RiskDetection undocumented
     8  type RiskDetection struct {
     9  	// Entity is the base model of RiskDetection
    10  	Entity
    11  	// RequestID undocumented
    12  	RequestID *string `json:"requestId,omitempty"`
    13  	// CorrelationID undocumented
    14  	CorrelationID *string `json:"correlationId,omitempty"`
    15  	// RiskType undocumented
    16  	RiskType *RiskEventType `json:"riskType,omitempty"`
    17  	// RiskState undocumented
    18  	RiskState *RiskState `json:"riskState,omitempty"`
    19  	// RiskLevel undocumented
    20  	RiskLevel *RiskLevel `json:"riskLevel,omitempty"`
    21  	// RiskDetail undocumented
    22  	RiskDetail *RiskDetail `json:"riskDetail,omitempty"`
    23  	// Source undocumented
    24  	Source *string `json:"source,omitempty"`
    25  	// DetectionTimingType undocumented
    26  	DetectionTimingType *RiskDetectionTimingType `json:"detectionTimingType,omitempty"`
    27  	// Activity undocumented
    28  	Activity *ActivityType `json:"activity,omitempty"`
    29  	// TokenIssuerType undocumented
    30  	TokenIssuerType *TokenIssuerType `json:"tokenIssuerType,omitempty"`
    31  	// IPAddress undocumented
    32  	IPAddress *string `json:"ipAddress,omitempty"`
    33  	// Location undocumented
    34  	Location *SignInLocation `json:"location,omitempty"`
    35  	// ActivityDateTime undocumented
    36  	ActivityDateTime *time.Time `json:"activityDateTime,omitempty"`
    37  	// DetectedDateTime undocumented
    38  	DetectedDateTime *time.Time `json:"detectedDateTime,omitempty"`
    39  	// LastUpdatedDateTime undocumented
    40  	LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"`
    41  	// UserID undocumented
    42  	UserID *string `json:"userId,omitempty"`
    43  	// UserDisplayName undocumented
    44  	UserDisplayName *string `json:"userDisplayName,omitempty"`
    45  	// UserPrincipalName undocumented
    46  	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
    47  	// AdditionalInfo undocumented
    48  	AdditionalInfo *string `json:"additionalInfo,omitempty"`
    49  }
    50  
    51  // RiskUserActivity undocumented
    52  type RiskUserActivity struct {
    53  	// Object is the base model of RiskUserActivity
    54  	Object
    55  	// EventTypes undocumented
    56  	EventTypes []RiskEventType `json:"eventTypes,omitempty"`
    57  	// Detail undocumented
    58  	Detail *RiskDetail `json:"detail,omitempty"`
    59  }