@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
16 lines (15 loc) • 386 B
TypeScript
/**
* Refund amount type
* @description Entity cost - 100, application fee - 5, fees payer - sender.
* Sender will be charged on 103.2
* Receiver revenue: 100 - 5 = 95
* Application revenue: 5
*
* Refund revenue - 95
* Refund entity cost - 100
*/
declare enum RefundAmountType {
REVENUE = "revenue",
ENTITY_COST = "entityCost"
}
export { RefundAmountType as default };