blob: 535a6e27ff9ddfa3b9a28b791f286609098a2883 (
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"
// 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"`
}
|