Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
[TASK] add *_amount_submitted to Payment schema
Browse files Browse the repository at this point in the history
  • Loading branch information
geertweening committed Oct 14, 2014
1 parent 7b32508 commit 67134e3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions schemas/Payment.json
Expand Up @@ -13,7 +13,11 @@
"$ref": "UINT32"
},
"source_amount": {
"description": "An optional amount that can be specified to constrain cross-currency payments",
"description": "An optional amount that can be specified to constrain cross-currency payments. The amount the source_account will send or has send",
"$ref": "Amount"
},
"source_amount_submitted": {
"description": "An optional amount that can be specified to constrain cross-currency payments. The amount the source_account intended to send",
"$ref": "Amount"
},
"source_slippage": {
Expand All @@ -28,7 +32,11 @@
"$ref": "UINT32"
},
"destination_amount": {
"description": "The amount the destination_account will receive",
"description": "The amount the destination_account will receive or has received",
"$ref": "Amount"
},
"destination_amount_submitted": {
"description": "The amount the destination_account was intended to receive",
"$ref": "Amount"
},
"invoice_id": {
Expand Down

0 comments on commit 67134e3

Please sign in to comment.