Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
48 lines
974 B
Protocol Buffer
48 lines
974 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
|
|
|
|
message SiteRequestEvent {
|
|
enum RequestType {
|
|
REQUEST_TYPE_UNSPECIFIED = 0;
|
|
REQUEST_TYPE_DEMO = 1;
|
|
REQUEST_TYPE_CONTACT = 2;
|
|
REQUEST_TYPE_CALL = 3;
|
|
}
|
|
|
|
RequestType type = 1;
|
|
|
|
oneof payload {
|
|
SiteDemoRequest demo = 2;
|
|
SiteContactRequest contact = 3;
|
|
SiteCallRequest call = 4;
|
|
}
|
|
}
|
|
|
|
message SiteDemoRequest {
|
|
string name = 1;
|
|
string organization_name = 2;
|
|
string phone = 3;
|
|
string work_email = 4;
|
|
string payout_volume = 5;
|
|
string comment = 6;
|
|
}
|
|
|
|
message SiteContactRequest {
|
|
string name = 1;
|
|
string email = 2;
|
|
string phone = 3;
|
|
string company = 4;
|
|
string topic = 5;
|
|
string message = 6;
|
|
}
|
|
|
|
message SiteCallRequest {
|
|
string name = 1;
|
|
string phone = 2;
|
|
string email = 3;
|
|
string company = 4;
|
|
string preferred_time = 5;
|
|
string message = 6;
|
|
}
|