1031f3122e
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
116 lines
1.5 KiB
Go
116 lines
1.5 KiB
Go
package accounting
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
|
"github.com/nspcc-dev/neofs-api-go/v2/session"
|
|
)
|
|
|
|
type BalanceRequestBody struct {
|
|
ownerID *refs.OwnerID
|
|
}
|
|
|
|
type BalanceResponseBody struct {
|
|
bal *Decimal
|
|
}
|
|
|
|
type Decimal struct {
|
|
val int64
|
|
|
|
prec uint32
|
|
}
|
|
|
|
type BalanceRequest struct {
|
|
body *BalanceRequestBody
|
|
|
|
session.RequestHeaders
|
|
}
|
|
|
|
type BalanceResponse struct {
|
|
body *BalanceResponseBody
|
|
|
|
session.ResponseHeaders
|
|
}
|
|
|
|
func (b *BalanceRequestBody) GetOwnerID() *refs.OwnerID {
|
|
if b != nil {
|
|
return b.ownerID
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *BalanceRequestBody) SetOwnerID(v *refs.OwnerID) {
|
|
if b != nil {
|
|
b.ownerID = v
|
|
}
|
|
}
|
|
|
|
func (b *BalanceRequest) GetBody() *BalanceRequestBody {
|
|
if b != nil {
|
|
return b.body
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *BalanceRequest) SetBody(v *BalanceRequestBody) {
|
|
if b != nil {
|
|
b.body = v
|
|
}
|
|
}
|
|
|
|
func (d *Decimal) GetValue() int64 {
|
|
if d != nil {
|
|
return d.val
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func (d *Decimal) SetValue(v int64) {
|
|
if d != nil {
|
|
d.val = v
|
|
}
|
|
}
|
|
|
|
func (d *Decimal) GetPrecision() uint32 {
|
|
if d != nil {
|
|
return d.prec
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func (d *Decimal) SetPrecision(v uint32) {
|
|
if d != nil {
|
|
d.prec = v
|
|
}
|
|
}
|
|
|
|
func (br *BalanceResponseBody) GetBalance() *Decimal {
|
|
if br != nil {
|
|
return br.bal
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (br *BalanceResponseBody) SetBalance(v *Decimal) {
|
|
if br != nil {
|
|
br.bal = v
|
|
}
|
|
}
|
|
|
|
func (br *BalanceResponse) GetBody() *BalanceResponseBody {
|
|
if br != nil {
|
|
return br.body
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (br *BalanceResponse) SetBody(v *BalanceResponseBody) {
|
|
if br != nil {
|
|
br.body = v
|
|
}
|
|
}
|