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

22 lines
421 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;
}
message BankCardInformation {
string Number = 1;
string ExpiryYear = 2;
string ExpiryMonth = 3;
optional string CSC = 4;
optional string CardHolderName = 5;
}