18 lines
371 B
Protocol Buffer
18 lines
371 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common.payment.v1;
|
|
|
|
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
|
|
|
|
// -------------------------
|
|
// SEPA bank account details
|
|
// -------------------------
|
|
|
|
message SepaBankDetails {
|
|
string id = 1;
|
|
string iban = 2; // IBAN
|
|
string bic = 3; // optional (BIC/SWIFT)
|
|
string account_holder_name = 4;
|
|
}
|
|
|