common.providerspecific.slovakapi

io.token.proto.common.providerspecific.slovakapi common/src/main/proto/provider/slovakapi.proto


syntax = "proto3";
package io.token.proto.common.providerspecific.slovakapi;
option java_outer_classname = "SlovakApi";
option csharp_namespace = "Tokenio.Proto.Common.ProviderSpecific.SlovakApi";

import "extensions/field.proto";
import "extensions/message.proto";

message SlovakApiTransactionDetails {
  string creditor_name = 1 [(io.token.proto.extensions.field.redact) = true];
  AccountReference creditor_account = 2;
  string debtor_name = 3 [(io.token.proto.extensions.field.redact) = true];
  AccountReference debtor_account = 4;
}

message AccountReference {
  option (io.token.proto.extensions.message.redact) = true;
  string iban = 1;
  string bban = 2;
}