github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelAccount.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Account undocumented
     8  type Account struct {
     9  	// Entity is the base model of Account
    10  	Entity
    11  	// Number undocumented
    12  	Number *string `json:"number,omitempty"`
    13  	// DisplayName undocumented
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  	// Category undocumented
    16  	Category *string `json:"category,omitempty"`
    17  	// SubCategory undocumented
    18  	SubCategory *string `json:"subCategory,omitempty"`
    19  	// Blocked undocumented
    20  	Blocked *bool `json:"blocked,omitempty"`
    21  	// LastModifiedDateTime undocumented
    22  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    23  }
    24  
    25  // AccountAlias undocumented
    26  type AccountAlias struct {
    27  	// Object is the base model of AccountAlias
    28  	Object
    29  	// ID undocumented
    30  	ID *string `json:"id,omitempty"`
    31  	// IDType undocumented
    32  	IDType *string `json:"idType,omitempty"`
    33  }