Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
feat: made AffordabilityExpenseReversalEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
justinemmanuelmercado committed Jun 19, 2020
1 parent 86d61f4 commit c087bc4
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/sections/finances/codec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,10 +424,18 @@ const AffordabilityExpenseEvent = Codec.interface({
TaxTypeSGST: optional(CurrencyAmount),
MarketplaceId: optional(string),
})
/**
* @todo
*/
const AffordabilityExpenseReversalEvent = unknown

const AffordabilityExpenseReversalEvent = Codec.interface({
PostedDate: optional(mwsDate),
TransactionType: optional(transactionType),
AmazonOrderId: optional(string),
BaseExpense: optional(CurrencyAmount),
TotalExpense: optional(CurrencyAmount),
TaxTypeIGST: optional(CurrencyAmount),
TaxTypeCGST: optional(CurrencyAmount),
TaxTypeSGST: optional(CurrencyAmount),
MarketplaceId: optional(string),
})
/**
* @todo
*/
Expand Down

0 comments on commit c087bc4

Please sign in to comment.