Skip to content

Instantly share code, notes, and snippets.

@theraphim
Created October 29, 2015 16:29
Show Gist options
  • Save theraphim/f16bc41a5d5520ac2ded to your computer and use it in GitHub Desktop.
Save theraphim/f16bc41a5d5520ac2ded to your computer and use it in GitHub Desktop.
yntax = "proto3";
package org.stingray.fmoney;
message Timestamp {
uint64 timestamp = 1;
uint64 confidence = 2;
}
message TypedAmount {
string currency = 1;
int64 amount = 2;
}
message Split {
Timestamp timestamp = 1;
string description = 10;
}
message Transaction {
repeated Split splits = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment