add giftcards

This commit is contained in:
matst80
2025-11-21 10:14:33 +01:00
parent 896bf7672b
commit 886e3ce48f
7 changed files with 374 additions and 16 deletions

View File

@@ -152,3 +152,20 @@ message PreConditionFailed {
string error = 2;
google.protobuf.Any input = 3;
}
message GiftcardItem {
int64 value = 1;
string deliveryDate = 2;
string recipient = 3;
string recipientType = 4;
string message = 5;
optional google.protobuf.Any designConfig = 6;
}
message AddGiftcard {
GiftcardItem giftcard = 1;
}
message RemoveGiftcard {
uint32 id = 1;
}