customer/api/proto/treasurer/payment.model.proto

32 lines
534 B
Protocol Buffer
Raw Normal View History

2023-06-22 09:36:43 +00:00
syntax = "proto3";
package treasurer;
option go_package = "./treasurer";
message MainPaymentSettings {
string Currency = 1;
int64 Amount = 2;
repeated string CallbackHostGRPC = 3;
string ReturnURL = 4;
string UserID = 5;
string ClientIP = 6;
2024-04-18 17:10:23 +00:00
Customer Customer = 7;
repeated Item Items = 8;
2023-06-22 09:36:43 +00:00
}
2024-04-18 17:10:23 +00:00
message Customer {
string FullName = 1;
string INN = 2;
string Email = 3;
string Phone = 4;
}
message Item {
string Description = 1;
string Measure = 2;
string Quantity = 3;
string Money = 4;
string Currency = 5;
}