ConsumeTicket » 이력 » 개정판 7
개정판 6 (이름없음, 2021/06/10 05:13) → 개정판 7/9 (이름없음, 2021/06/10 05:34)
h1. ConsumeTicket
* 발행된 티켓을 소모합니다.
---
<pre><code class="java">
consumeTicket(
param: TicketConsumeRequest
): TicketConsumeResponse
</code></pre>
*TicketConsumeRequest (param)*
| *field* | *type* | *description* | *note* |
| did | String | | |
| command | String | | 값 : consumeTicket |
| ticketId | String | | |
| context | TicketContext | | |
*TicketContext*
| *field* | *type* | *description* | *note* |
| count | int | | |
| timeStamp | String | | |
*TicketConsumeResponse*
| *field* | *type* | *description* | *note* |
| command | String | | 값 : consumeTicket |
| infoUrl | String | | |
| couponImg | String | | |
| validAt | String | | |
| expiredAt | String | | |
| createdAt | String | | |
| updatedAt | String | | |
| ticketId | String | | |
| status | int | | |
| proposal | Proposal | | |
*Proposal*
| *field* | *type* | *description* | *note* |
| command | String | | |
| status | int | | |
| purpose | int | | |
| maxIssuable | int | | |
| category | int[] | | |
| disAllowMultiIssue | boolean | | |
| condition | String | | |
| content | String | | |
| createdAt | String | | |
| revokedAt | String | | |
| updatedAt | String | | |
| deposit | String | | |
| duration | String | | |
| filter | String | | |
| notAfter | String | | |
| notBefore | String | | |
| owner | String | | |
| proposalId | String | | |
| ticketValidFrom | String | | |
| description | String[] | | |
| imageurl | String[] | | |
| consumePolicy | ProposalConsumePolicy | | |
| rewardPolicy | ProposalRewardPolicy | | |
*ProposalConsumePolicy*
| *field* | *type* | *description* | *note* |
| type | int | 소모 유형 | |
| count | int | 소모 허용 횟수 | |
| maxDataCount | int | consume시 최대 데이터 소모 수 | optional |
| period | String | 소모 주기 | optional |
*ProposalRewardPolicy*
| *field* | *type* | *description* |
| type | int | 지급 유형 |
| amount | int | 티켓의 지급 가능 총량 |
---
*Request Example*
<pre><code class="java">
mutation {
consumeTicket(param : {
did: "G5rw9qAMbozGxySHkMaztD"
command: "consumeTicket"
ticketId: "orPxmv15e2oSPuvTht3fZ2qiSoJ2wqfaJpRd6hRkc59UPjtjmR78C46Xne28pRphq5ssh7kWaa1JvN7yvFkLbVYw2f3gfQFR2awCYQYHAHA5JYLcM"
context : {
count: 1
timeStamp: ""
}
}) {
infoUrl
validAt
ticketId
proposal {
proposalId
}
}
}
</code></pre>
*Response Example*
<pre><code class="java">
{
"data": {
"consumeTicket": {
"infoUrl": null,
"validAt": "2021-06-03T06:48:15Z",
"ticketId": "orPxmv15e2oSPuvTht3fZ2qiSoJ2wqfaJpRd6hRkc59UPjtjmR78C46Xne28pRphq5ssh7kWaa1JvN7yvFkLbVYw2f3gfQFR2awCYQYHAHA5JYLcM",
"proposal": {
"proposalId": "orPxmv15e2oSPufT3TkfVmj9XSSnAqPzQirrU6A9yJCJovwkK6k89A1wCFwqWvHzNAvbDDypRgn4YeSVbeZDSS7MTRKEY1VCfypDu1wsFm41k22SK"
}
}
}
}
</code></pre>
---
*필드 관련하여 자세한 내용은 아래 URL 참고*
* "UNO.Cranberry ChainCode":https://snplab.synology.me/confluence/display/CBU/Cranberry+Chaincode