codeword/docs/proto/promo.proto

17 lines
264 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package codeword;
message Time {
int64 from = 1;
int64 to = 2;
}
service PromoCodeService {
rpc GetAllPromoActivations(Time) returns (PromoActivationResp);
}
message PromoActivationResp {
map<string, repeated string> response = 1;
}