[#37] Add body message to balance requests
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
327c476ecf
commit
d22c2557cb
1 changed files with 35 additions and 4 deletions
|
@ -6,6 +6,8 @@ option go_package = "github.com/nspcc-dev/neofs-api-go/accounting";
|
||||||
option csharp_namespace = "NeoFS.API.Accounting";
|
option csharp_namespace = "NeoFS.API.Accounting";
|
||||||
|
|
||||||
import "refs/types.proto";
|
import "refs/types.proto";
|
||||||
|
import "service/meta.proto";
|
||||||
|
import "service/verify.proto";
|
||||||
|
|
||||||
// The service provides methods for obtaining information
|
// The service provides methods for obtaining information
|
||||||
// about the account balance in NeoFS system.
|
// about the account balance in NeoFS system.
|
||||||
|
@ -22,8 +24,23 @@ service Accounting {
|
||||||
// To gain access to the requested information, the request body must be formed
|
// To gain access to the requested information, the request body must be formed
|
||||||
// according to the requirements from the system specification.
|
// according to the requirements from the system specification.
|
||||||
message BalanceRequest {
|
message BalanceRequest {
|
||||||
// Carries user identifier in NeoFS system for which the balance is requested.
|
message Body {
|
||||||
refs.OwnerID owner_id = 1;
|
// Carries user identifier in NeoFS system for which the balance
|
||||||
|
// is requested.
|
||||||
|
refs.OwnerID owner_id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Body of the balance request message.
|
||||||
|
Body body = 1;
|
||||||
|
|
||||||
|
// Carries request meta information. Header data is used only to regulate
|
||||||
|
// message transport and does not affect request execution.
|
||||||
|
service.RequestMetaHeader meta_header = 2;
|
||||||
|
|
||||||
|
// Carries request verification information. This header is used to
|
||||||
|
// authenticate the nodes of the message route and check the correctness
|
||||||
|
// of transmission.
|
||||||
|
service.RequestVerificationHeader verify_header = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Decimal represents the decimal numbers.
|
// Decimal represents the decimal numbers.
|
||||||
|
@ -39,6 +56,20 @@ message Decimal {
|
||||||
//
|
//
|
||||||
// The amount of funds is calculated in decimal numbers.
|
// The amount of funds is calculated in decimal numbers.
|
||||||
message BalanceResponse {
|
message BalanceResponse {
|
||||||
// Carries the amount of funds on the account.
|
message Body {
|
||||||
Decimal balance = 1;
|
// Carries the amount of funds on the account.
|
||||||
|
Decimal balance = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Body of the balance response message.
|
||||||
|
Body body = 1;
|
||||||
|
|
||||||
|
// Carries response meta information. Header data is used only to regulate
|
||||||
|
// message transport and does not affect request execution.
|
||||||
|
service.ResponseMetaHeader meta_header = 2;
|
||||||
|
|
||||||
|
// Carries response verification information. This header is used to
|
||||||
|
// authenticate the nodes of the message route and check the correctness
|
||||||
|
// of transmission.
|
||||||
|
service.ResponseVerificationHeader verify_header = 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue