int64s use [jstype = JS_STRING] to preserve big ints in javascript

This commit is contained in:
woodser 2021-09-13 12:12:54 -04:00
parent 59f3fc6385
commit 2b80385928
2 changed files with 10 additions and 10 deletions

View file

@ -2361,7 +2361,7 @@ message BlockChainExplorer {
message PaymentAccount {
string id = 1;
int64 creation_date = 2;
int64 creation_date = 2 [jstype = JS_STRING];
PaymentMethod payment_method = 3;
string account_name = 4;
repeated TradeCurrency trade_currencies = 5;
@ -2371,8 +2371,8 @@ message PaymentAccount {
message PaymentMethod {
string id = 1;
int64 max_trade_period = 2;
int64 max_trade_limit = 3;
int64 max_trade_period = 2 [jstype = JS_STRING];
int64 max_trade_limit = 3 [jstype = JS_STRING];
}
// Currency