Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 3.98 KB

LitecoinAPIResponse.md

File metadata and controls

150 lines (81 loc) · 3.98 KB

LitecoinAPIResponse

Properties

Name Type Description Notes
Success bool
Message string
Body Pointer to InputBody [optional]
Address Pointer to string [optional]
Data Pointer to LitecoinTransactionOutput [optional]

Methods

NewLitecoinAPIResponse

func NewLitecoinAPIResponse(success bool, message string, ) *LitecoinAPIResponse

NewLitecoinAPIResponse instantiates a new LitecoinAPIResponse 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

NewLitecoinAPIResponseWithDefaults

func NewLitecoinAPIResponseWithDefaults() *LitecoinAPIResponse

NewLitecoinAPIResponseWithDefaults instantiates a new LitecoinAPIResponse 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

GetSuccess

func (o *LitecoinAPIResponse) GetSuccess() bool

GetSuccess returns the Success field if non-nil, zero value otherwise.

GetSuccessOk

func (o *LitecoinAPIResponse) GetSuccessOk() (*bool, bool)

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

SetSuccess

func (o *LitecoinAPIResponse) SetSuccess(v bool)

SetSuccess sets Success field to given value.

GetMessage

func (o *LitecoinAPIResponse) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *LitecoinAPIResponse) GetMessageOk() (*string, bool)

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

SetMessage

func (o *LitecoinAPIResponse) SetMessage(v string)

SetMessage sets Message field to given value.

GetBody

func (o *LitecoinAPIResponse) GetBody() InputBody

GetBody returns the Body field if non-nil, zero value otherwise.

GetBodyOk

func (o *LitecoinAPIResponse) GetBodyOk() (*InputBody, bool)

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

SetBody

func (o *LitecoinAPIResponse) SetBody(v InputBody)

SetBody sets Body field to given value.

HasBody

func (o *LitecoinAPIResponse) HasBody() bool

HasBody returns a boolean if a field has been set.

GetAddress

func (o *LitecoinAPIResponse) GetAddress() string

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *LitecoinAPIResponse) GetAddressOk() (*string, bool)

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

SetAddress

func (o *LitecoinAPIResponse) SetAddress(v string)

SetAddress sets Address field to given value.

HasAddress

func (o *LitecoinAPIResponse) HasAddress() bool

HasAddress returns a boolean if a field has been set.

GetData

func (o *LitecoinAPIResponse) GetData() LitecoinTransactionOutput

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *LitecoinAPIResponse) GetDataOk() (*LitecoinTransactionOutput, bool)

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

SetData

func (o *LitecoinAPIResponse) SetData(v LitecoinTransactionOutput)

SetData sets Data field to given value.

HasData

func (o *LitecoinAPIResponse) HasData() bool

HasData returns a boolean if a field has been set.

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