diff --git a/accounting/types.proto b/accounting/types.proto index e681cd1..cc4fbf6 100644 --- a/accounting/types.proto +++ b/accounting/types.proto @@ -14,9 +14,9 @@ option csharp_namespace = "NeoFS.API.v2.Accounting"; // description. message Decimal { // Number in smallest Token fractions. - int64 value = 1; + int64 value = 1 [json_name = "value"]; // Precision value indicating how many smallest fractions can be in one // integer. - uint32 precision = 2; + uint32 precision = 2 [json_name = "precision"]; }