mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
444 B
Protocol Buffer
18 lines
444 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gradido;
|
|
|
|
import "Transfer.proto";
|
|
import "StateCreateGroup.proto";
|
|
import "StateGroupChangeParent.proto";
|
|
import "TransactionCreation.proto";
|
|
|
|
message TransactionBody {
|
|
string memo = 1; // max 150 chars
|
|
oneof data {
|
|
StateCreateGroup createGroup = 2;
|
|
StateGroupChangeParent groupChangeParent = 3;
|
|
Transfer transfer = 4; // at least 88 Byte
|
|
TransactionCreation creation = 5; // 44 Byte
|
|
}
|
|
} |