Skip to content

Commit

Permalink
fix(manual-journals): vat is nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
yyoshiki41 committed Dec 1, 2021
1 parent 697f4fa commit ef5e0e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manual_journals.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ type ManualJournalDetails struct {
// 金額(税込で指定してください)
Amount int32 `json:"amount"`
// 消費税額(指定しない場合は自動で計算されます)
Vat int32 `json:"vat"`
Vat *int32 `json:"vat"`
// 備考
Description string `json:"description"`
}
Expand All @@ -102,7 +102,7 @@ type CreateManualJournalParamsDetail struct {
// 取引金額(税込で指定してください)
Amount uint64 `json:"amount"`
// 消費税額(指定しない場合は自動で計算されます)
Vat int32 `json:"vat,omitempty"`
Vat *int32 `json:"vat,omitempty"`
// 取引先ID
PartnerID int32 `json:"partner_id,omitempty"`
// 取引先コード
Expand Down Expand Up @@ -146,7 +146,7 @@ type UpdateManualJournalParamsDetails struct {
// 取引金額(税込で指定してください)
Amount int32 `json:"amount"`
// 消費税額(指定しない場合は自動で計算されます)
Vat int32 `json:"vat,omitempty"`
Vat *int32 `json:"vat,omitempty"`
// 取引先ID
PartnerID int32 `json:"partner_id,omitempty"`
// 取引先コード
Expand Down

0 comments on commit ef5e0e3

Please sign in to comment.