refactored notificatoin / tgsettle responsibility boundaries
This commit is contained in:
@@ -4,14 +4,14 @@ package common.payment.v1;
|
||||
|
||||
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
|
||||
|
||||
// -------------------------
|
||||
// SEPA bank account details
|
||||
// -------------------------
|
||||
|
||||
// SepaBankDetails carries SEPA bank account information for EUR transfers.
|
||||
message SepaBankDetails {
|
||||
// id is the unique identifier for this endpoint instance.
|
||||
string id = 1;
|
||||
string iban = 2; // IBAN
|
||||
string bic = 3; // optional (BIC/SWIFT)
|
||||
// iban is the International Bank Account Number.
|
||||
string iban = 2;
|
||||
// bic is the optional BIC/SWIFT code.
|
||||
string bic = 3;
|
||||
// account_holder_name is the full name of the account holder.
|
||||
string account_holder_name = 4;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user