Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.61 KB

RecentExecution.md

File metadata and controls

134 lines (73 loc) · 3.61 KB

RecentExecution

Properties

Name Type Description Notes
MatchNumber Pointer to string Unique execution match number. [optional]
Price Pointer to string Price of the execution. [optional]
Amount Pointer to string Amount of the execution. [optional]
ExecutedAt Pointer to string Execution timestamp. [optional]

Methods

NewRecentExecution

func NewRecentExecution() *RecentExecution

NewRecentExecution instantiates a new RecentExecution 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

NewRecentExecutionWithDefaults

func NewRecentExecutionWithDefaults() *RecentExecution

NewRecentExecutionWithDefaults instantiates a new RecentExecution 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

GetMatchNumber

func (o *RecentExecution) GetMatchNumber() string

GetMatchNumber returns the MatchNumber field if non-nil, zero value otherwise.

GetMatchNumberOk

func (o *RecentExecution) GetMatchNumberOk() (*string, bool)

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

SetMatchNumber

func (o *RecentExecution) SetMatchNumber(v string)

SetMatchNumber sets MatchNumber field to given value.

HasMatchNumber

func (o *RecentExecution) HasMatchNumber() bool

HasMatchNumber returns a boolean if a field has been set.

GetPrice

func (o *RecentExecution) GetPrice() string

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

GetPriceOk

func (o *RecentExecution) 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 *RecentExecution) SetPrice(v string)

SetPrice sets Price field to given value.

HasPrice

func (o *RecentExecution) HasPrice() bool

HasPrice returns a boolean if a field has been set.

GetAmount

func (o *RecentExecution) GetAmount() string

GetAmount returns the Amount field if non-nil, zero value otherwise.

GetAmountOk

func (o *RecentExecution) GetAmountOk() (*string, bool)

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

SetAmount

func (o *RecentExecution) SetAmount(v string)

SetAmount sets Amount field to given value.

HasAmount

func (o *RecentExecution) HasAmount() bool

HasAmount returns a boolean if a field has been set.

GetExecutedAt

func (o *RecentExecution) GetExecutedAt() string

GetExecutedAt returns the ExecutedAt field if non-nil, zero value otherwise.

GetExecutedAtOk

func (o *RecentExecution) GetExecutedAtOk() (*string, bool)

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

SetExecutedAt

func (o *RecentExecution) SetExecutedAt(v string)

SetExecutedAt sets ExecutedAt field to given value.

HasExecutedAt

func (o *RecentExecution) HasExecutedAt() bool

HasExecutedAt returns a boolean if a field has been set.

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