Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new status to deposit request #1765

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion openapi/components/schemas/DepositRequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@ properties:
enum:
- created
- pending
- initiated
- completed
- expired
x-enumDescriptions:
created: Request is created, but it has not been visited by a customer. This is a temporary state.
pending: Request has been visited by a customer, but no funds have been deposited yet. This is a temporary state.
completed: A funds deposit transaction has been initiated. This is a permanent state.
initiated: A funds deposit transaction has been initiated. This is a temporary state.
completed: A funds deposit transaction has been completed. This is a permanent state.
expired: Request expired without a deposit attempt. This is a permanent state.
currency:
$ref: ./CurrencyCode.yaml
Expand Down