refactored notificatoin / tgsettle responsibility boundaries
This commit is contained in:
@@ -4,13 +4,15 @@ package common.payment.v1;
|
||||
|
||||
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
|
||||
|
||||
// -------------------------
|
||||
// Russian bank account details
|
||||
// -------------------------
|
||||
|
||||
// RussianBankDetails carries Russian domestic bank account information for
|
||||
// RUB payouts.
|
||||
message RussianBankDetails {
|
||||
// id is the unique identifier for this endpoint instance.
|
||||
string id = 1;
|
||||
string account_number = 2; // 20 digits
|
||||
string bik = 3; // 9 digits
|
||||
// account_number is the 20-digit Russian bank account number.
|
||||
string account_number = 2;
|
||||
// bik is the 9-digit Russian bank identification code.
|
||||
string bik = 3;
|
||||
// account_holder_name is the full name of the account holder.
|
||||
string account_holder_name = 4;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user