blob: 50808945aa9df9f2323ab3e165a3d206a0f88879 (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
import "time"
// Account undocumented
type Account struct {
// Entity is the base model of Account
Entity
// Number undocumented
Number *string `json:"number,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// Category undocumented
Category *string `json:"category,omitempty"`
// SubCategory undocumented
SubCategory *string `json:"subCategory,omitempty"`
// Blocked undocumented
Blocked *bool `json:"blocked,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
}
// AccountAlias undocumented
type AccountAlias struct {
// Object is the base model of AccountAlias
Object
// ID undocumented
ID *string `json:"id,omitempty"`
// IDType undocumented
IDType *string `json:"idType,omitempty"`
}
|