mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-06 13:34:19 +01:00
140 lines
2.9 KiB
Go
140 lines
2.9 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// V1Vtxo v1 vtxo
|
|
//
|
|
// swagger:model v1Vtxo
|
|
type V1Vtxo struct {
|
|
|
|
// amount
|
|
Amount string `json:"amount,omitempty"`
|
|
|
|
// created at
|
|
CreatedAt string `json:"createdAt,omitempty"`
|
|
|
|
// expire at
|
|
ExpireAt string `json:"expireAt,omitempty"`
|
|
|
|
// is pending
|
|
IsPending bool `json:"isPending,omitempty"`
|
|
|
|
// outpoint
|
|
Outpoint *V1Outpoint `json:"outpoint,omitempty"`
|
|
|
|
// pubkey
|
|
Pubkey string `json:"pubkey,omitempty"`
|
|
|
|
// redeem tx
|
|
RedeemTx string `json:"redeemTx,omitempty"`
|
|
|
|
// round txid
|
|
RoundTxid string `json:"roundTxid,omitempty"`
|
|
|
|
// spent
|
|
Spent bool `json:"spent,omitempty"`
|
|
|
|
// spent by
|
|
SpentBy string `json:"spentBy,omitempty"`
|
|
|
|
// swept
|
|
Swept bool `json:"swept,omitempty"`
|
|
}
|
|
|
|
// Validate validates this v1 vtxo
|
|
func (m *V1Vtxo) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateOutpoint(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1Vtxo) validateOutpoint(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Outpoint) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Outpoint != nil {
|
|
if err := m.Outpoint.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("outpoint")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("outpoint")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this v1 vtxo based on the context it is used
|
|
func (m *V1Vtxo) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateOutpoint(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1Vtxo) contextValidateOutpoint(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Outpoint != nil {
|
|
|
|
if swag.IsZero(m.Outpoint) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Outpoint.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("outpoint")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("outpoint")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *V1Vtxo) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *V1Vtxo) UnmarshalBinary(b []byte) error {
|
|
var res V1Vtxo
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|