blob: dc3c4f953116c1fc7885f4d37ee97e8f30f3ebda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// AuthenticationDetail undocumented
type AuthenticationDetail struct {
// Object is the base model of AuthenticationDetail
Object
// AuthenticationStepDateTime undocumented
AuthenticationStepDateTime *time.Time `json:"authenticationStepDateTime,omitempty"`
// AuthenticationMethod undocumented
AuthenticationMethod *string `json:"authenticationMethod,omitempty"`
// AuthenticationMethodDetail undocumented
AuthenticationMethodDetail *string `json:"authenticationMethodDetail,omitempty"`
// Succeeded undocumented
Succeeded *bool `json:"succeeded,omitempty"`
// AuthenticationStepResultDetail undocumented
AuthenticationStepResultDetail *string `json:"authenticationStepResultDetail,omitempty"`
// AuthenticationStepRequirement undocumented
AuthenticationStepRequirement *string `json:"authenticationStepRequirement,omitempty"`
}
|