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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // GeneralLedgerEntry undocumented
     8  type GeneralLedgerEntry struct {
     9  	// Entity is the base model of GeneralLedgerEntry
    10  	Entity
    11  	// PostingDate undocumented
    12  	PostingDate *Date `json:"postingDate,omitempty"`
    13  	// DocumentNumber undocumented
    14  	DocumentNumber *string `json:"documentNumber,omitempty"`
    15  	// DocumentType undocumented
    16  	DocumentType *string `json:"documentType,omitempty"`
    17  	// AccountID undocumented
    18  	AccountID *UUID `json:"accountId,omitempty"`
    19  	// AccountNumber undocumented
    20  	AccountNumber *string `json:"accountNumber,omitempty"`
    21  	// Description undocumented
    22  	Description *string `json:"description,omitempty"`
    23  	// DebitAmount undocumented
    24  	DebitAmount *int `json:"debitAmount,omitempty"`
    25  	// CreditAmount undocumented
    26  	CreditAmount *int `json:"creditAmount,omitempty"`
    27  	// LastModifiedDateTime undocumented
    28  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    29  	// Account undocumented
    30  	Account *Account `json:"account,omitempty"`
    31  }