summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneral.go
blob: 339380191730dc4a21807c4f32d352ed7b875079 (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

import "time"

// GeneralLedgerEntry undocumented
type GeneralLedgerEntry struct {
	// Entity is the base model of GeneralLedgerEntry
	Entity
	// PostingDate undocumented
	PostingDate *Date `json:"postingDate,omitempty"`
	// DocumentNumber undocumented
	DocumentNumber *string `json:"documentNumber,omitempty"`
	// DocumentType undocumented
	DocumentType *string `json:"documentType,omitempty"`
	// AccountID undocumented
	AccountID *UUID `json:"accountId,omitempty"`
	// AccountNumber undocumented
	AccountNumber *string `json:"accountNumber,omitempty"`
	// Description undocumented
	Description *string `json:"description,omitempty"`
	// DebitAmount undocumented
	DebitAmount *int `json:"debitAmount,omitempty"`
	// CreditAmount undocumented
	CreditAmount *int `json:"creditAmount,omitempty"`
	// LastModifiedDateTime undocumented
	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
	// Account undocumented
	Account *Account `json:"account,omitempty"`
}