Newer
Older
syntax = "proto3";
package account_selector.v1;
import "account_selector/v1/data.proto";
import "google/protobuf/timestamp.proto";
enum Operation {
OPERATION_UNSPECIFIED = 0;
OPERATION_CREATE = 1;
OPERATION_UPDATE = 2;
OPERATION_DELETE = 3;
}
message AccountSelectorEvent {
Operation operation = 1;
string crsid = 2;
account_selector.v1.Account account = 3;
google.protobuf.Timestamp valid_at = 4;
}