blob: 3c50c6a7e0ab6d177e4d942a8a9f441a56d21aa2 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// StringKeyAttributeMappingSourceValuePair undocumented
type StringKeyAttributeMappingSourceValuePair struct {
// Object is the base model of StringKeyAttributeMappingSourceValuePair
Object
// Key undocumented
Key *string `json:"key,omitempty"`
// Value undocumented
Value *AttributeMappingSource `json:"value,omitempty"`
}
// StringKeyLongValuePair undocumented
type StringKeyLongValuePair struct {
// Object is the base model of StringKeyLongValuePair
Object
// Key undocumented
Key *string `json:"key,omitempty"`
// Value undocumented
Value *int `json:"value,omitempty"`
}
// StringKeyObjectValuePair undocumented
type StringKeyObjectValuePair struct {
// Object is the base model of StringKeyObjectValuePair
Object
// Key undocumented
Key *string `json:"key,omitempty"`
}
// StringKeyStringValuePair undocumented
type StringKeyStringValuePair struct {
// Object is the base model of StringKeyStringValuePair
Object
// Key undocumented
Key *string `json:"key,omitempty"`
// Value undocumented
Value *string `json:"value,omitempty"`
}
|