Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.33 KB

BookTicker.md

File metadata and controls

135 lines (72 loc) · 3.33 KB

BookTicker

Properties

Name Type Description Notes
Symbol string
BidPrice string
BidQty string
AskPrice string
AskQty string

Methods

NewBookTicker

func NewBookTicker(symbol string, bidPrice string, bidQty string, askPrice string, askQty string, ) *BookTicker

NewBookTicker instantiates a new BookTicker object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewBookTickerWithDefaults

func NewBookTickerWithDefaults() *BookTicker

NewBookTickerWithDefaults instantiates a new BookTicker object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetSymbol

func (o *BookTicker) GetSymbol() string

GetSymbol returns the Symbol field if non-nil, zero value otherwise.

GetSymbolOk

func (o *BookTicker) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSymbol

func (o *BookTicker) SetSymbol(v string)

SetSymbol sets Symbol field to given value.

GetBidPrice

func (o *BookTicker) GetBidPrice() string

GetBidPrice returns the BidPrice field if non-nil, zero value otherwise.

GetBidPriceOk

func (o *BookTicker) GetBidPriceOk() (*string, bool)

GetBidPriceOk returns a tuple with the BidPrice field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBidPrice

func (o *BookTicker) SetBidPrice(v string)

SetBidPrice sets BidPrice field to given value.

GetBidQty

func (o *BookTicker) GetBidQty() string

GetBidQty returns the BidQty field if non-nil, zero value otherwise.

GetBidQtyOk

func (o *BookTicker) GetBidQtyOk() (*string, bool)

GetBidQtyOk returns a tuple with the BidQty field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBidQty

func (o *BookTicker) SetBidQty(v string)

SetBidQty sets BidQty field to given value.

GetAskPrice

func (o *BookTicker) GetAskPrice() string

GetAskPrice returns the AskPrice field if non-nil, zero value otherwise.

GetAskPriceOk

func (o *BookTicker) GetAskPriceOk() (*string, bool)

GetAskPriceOk returns a tuple with the AskPrice field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAskPrice

func (o *BookTicker) SetAskPrice(v string)

SetAskPrice sets AskPrice field to given value.

GetAskQty

func (o *BookTicker) GetAskQty() string

GetAskQty returns the AskQty field if non-nil, zero value otherwise.

GetAskQtyOk

func (o *BookTicker) GetAskQtyOk() (*string, bool)

GetAskQtyOk returns a tuple with the AskQty field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAskQty

func (o *BookTicker) SetAskQty(v string)

SetAskQty sets AskQty field to given value.

[Back to Model list] [Back to API list] [Back to README]