@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
11 lines (10 loc) • 334 B
TypeScript
declare enum StripeDisputeStatus {
WARNING_NEEDS_RESPONSE = "warning_needs_response",
WARNING_UNDER_REVIEW = "warning_under_review",
WARNING_CLOSED = "warning_closed",
NEEDS_RESPONSE = "needs_response",
UNDER_REVIEW = "under_review",
WON = "won",
LOST = "lost"
}
export { StripeDisputeStatus as default };