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 cancellable field in the mint response #54

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions proto/cmp/services/book/v3/mint.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ message MintResponse {
//
// This field is not meant for the supplier.
string buy_transaction_id = 11;

// This field indicates whether the booking can be cancelled. If this field
// is not used, the default value is false, whick means the booking cannot be
// cancelled.
bool cancellable = 12;
}

// ![Diagram](https://storage.googleapis.com/docs-cmp-files/diagrams/proto/cmp/services/book/v3/mint.proto.dot.xs.svg)
Expand Down
Loading