Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.73 KB

HistoryEntry.md

File metadata and controls

108 lines (59 loc) · 2.73 KB

HistoryEntry

Properties

Name Type Description Notes
Price Pointer to string [optional]
Month Pointer to string [optional]
Reference Pointer to string [optional]

Methods

NewHistoryEntry

func NewHistoryEntry() *HistoryEntry

NewHistoryEntry instantiates a new HistoryEntry 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

NewHistoryEntryWithDefaults

func NewHistoryEntryWithDefaults() *HistoryEntry

NewHistoryEntryWithDefaults instantiates a new HistoryEntry 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

GetPrice

func (o *HistoryEntry) GetPrice() string

GetPrice returns the Price field if non-nil, zero value otherwise.

GetPriceOk

func (o *HistoryEntry) GetPriceOk() (*string, bool)

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

SetPrice

func (o *HistoryEntry) SetPrice(v string)

SetPrice sets Price field to given value.

HasPrice

func (o *HistoryEntry) HasPrice() bool

HasPrice returns a boolean if a field has been set.

GetMonth

func (o *HistoryEntry) GetMonth() string

GetMonth returns the Month field if non-nil, zero value otherwise.

GetMonthOk

func (o *HistoryEntry) GetMonthOk() (*string, bool)

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

SetMonth

func (o *HistoryEntry) SetMonth(v string)

SetMonth sets Month field to given value.

HasMonth

func (o *HistoryEntry) HasMonth() bool

HasMonth returns a boolean if a field has been set.

GetReference

func (o *HistoryEntry) GetReference() string

GetReference returns the Reference field if non-nil, zero value otherwise.

GetReferenceOk

func (o *HistoryEntry) GetReferenceOk() (*string, bool)

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

SetReference

func (o *HistoryEntry) SetReference(v string)

SetReference sets Reference field to given value.

HasReference

func (o *HistoryEntry) HasReference() bool

HasReference returns a boolean if a field has been set.

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