api-docs/models/ContractPayment.json
2023-12-05 14:00:24 -08:00

18 lines
430 B
JSON

{
"type": "object",
"description": "Payments for the contract.",
"properties": {
"onAccepted": {
"type": "integer",
"description": "The amount of credits received up front for accepting the contract."
},
"onFulfilled": {
"type": "integer",
"description": "The amount of credits received when the contract is fulfilled."
}
},
"required": [
"onAccepted",
"onFulfilled"
]
}