1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// PublicClientApplication undocumented
type PublicClientApplication struct {
// Object is the base model of PublicClientApplication
Object
// RedirectUris undocumented
RedirectUris []string `json:"redirectUris,omitempty"`
}
// PublicError undocumented
type PublicError struct {
// Object is the base model of PublicError
Object
// Code undocumented
Code *string `json:"code,omitempty"`
// Message undocumented
Message *string `json:"message,omitempty"`
// Target undocumented
Target *string `json:"target,omitempty"`
// Details undocumented
Details []PublicErrorDetail `json:"details,omitempty"`
// InnerError undocumented
InnerError *PublicInnerError `json:"innerError,omitempty"`
}
// PublicErrorDetail undocumented
type PublicErrorDetail struct {
// Object is the base model of PublicErrorDetail
Object
// Code undocumented
Code *string `json:"code,omitempty"`
// Message undocumented
Message *string `json:"message,omitempty"`
// Target undocumented
Target *string `json:"target,omitempty"`
}
// PublicErrorResponse undocumented
type PublicErrorResponse struct {
// Object is the base model of PublicErrorResponse
Object
// Error undocumented
Error *PublicError `json:"error,omitempty"`
}
// PublicInnerError undocumented
type PublicInnerError struct {
// Object is the base model of PublicInnerError
Object
// Code undocumented
Code *string `json:"code,omitempty"`
// Details undocumented
Details []PublicErrorDetail `json:"details,omitempty"`
// Message undocumented
Message *string `json:"message,omitempty"`
// Target undocumented
Target *string `json:"target,omitempty"`
}
|