15 lines
263 B
Protocol Buffer
15 lines
263 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common.payment.v1;
|
|
|
|
option go_package = "github.com/tech/sendico/pkg/proto/common/payment/v1;paymentv1";
|
|
|
|
|
|
message LedgerDetails {
|
|
string id = 1;
|
|
oneof source {
|
|
string ledger_account_ref = 2;
|
|
string account_code = 3;
|
|
}
|
|
}
|