forked from TrueCloudLab/frostfs-api
5cca1fd469
There is a need to remove gogoproto usage from NeoFS API since this plugin is not cross-language. This commit removes usage from BalanceRequest message. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
30 lines
1 KiB
Protocol Buffer
30 lines
1 KiB
Protocol Buffer
syntax = "proto3";
|
|
package accounting;
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/accounting";
|
|
option csharp_namespace = "NeoFS.API.Accounting";
|
|
|
|
import "service/meta.proto";
|
|
import "service/verify.proto";
|
|
import "decimal/decimal.proto";
|
|
import "refs/types.proto";
|
|
|
|
// Accounting is a service that provides access for accounting balance
|
|
// information
|
|
service Accounting {
|
|
// Balance returns current balance status of the NeoFS user
|
|
rpc Balance(BalanceRequest) returns (BalanceResponse);
|
|
}
|
|
|
|
message BalanceRequest {
|
|
// OwnerID carries user identifier in NeoFS system.
|
|
refs.OwnerID OwnerID = 1;
|
|
// RequestMetaHeader contains information about request meta headers (should be embedded into message)
|
|
service.RequestMetaHeader Meta = 98;
|
|
// RequestVerificationHeader is a set of signatures of every NeoFS Node that processed request (should be embedded into message)
|
|
service.RequestVerificationHeader Verify = 99;
|
|
}
|
|
|
|
message BalanceResponse {
|
|
// Balance contains current account balance state
|
|
decimal.Decimal Balance = 1;
|
|
}
|