forked from TrueCloudLab/frostfs-api-go
732dd51b1b
I knew one day `sed` would save me an hour of manual work: ``` sed -i -n -e ' s/) Set/) Set/ p t setter b end :setter n s/nil/nil/ t hasif p b end :hasif n :loop p n s/}/}/ t end b loop :end ' $@ goimports -w $@ ``` Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
104 lines
1.4 KiB
Go
104 lines
1.4 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) {
|
|
b.ownerID = v
|
|
}
|
|
|
|
func (b *BalanceRequest) GetBody() *BalanceRequestBody {
|
|
if b != nil {
|
|
return b.body
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *BalanceRequest) SetBody(v *BalanceRequestBody) {
|
|
b.body = v
|
|
}
|
|
|
|
func (d *Decimal) GetValue() int64 {
|
|
if d != nil {
|
|
return d.val
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func (d *Decimal) SetValue(v int64) {
|
|
d.val = v
|
|
}
|
|
|
|
func (d *Decimal) GetPrecision() uint32 {
|
|
if d != nil {
|
|
return d.prec
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func (d *Decimal) SetPrecision(v uint32) {
|
|
d.prec = v
|
|
}
|
|
|
|
func (br *BalanceResponseBody) GetBalance() *Decimal {
|
|
if br != nil {
|
|
return br.bal
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (br *BalanceResponseBody) SetBalance(v *Decimal) {
|
|
br.bal = v
|
|
}
|
|
|
|
func (br *BalanceResponse) GetBody() *BalanceResponseBody {
|
|
if br != nil {
|
|
return br.body
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (br *BalanceResponse) SetBody(v *BalanceResponseBody) {
|
|
br.body = v
|
|
}
|