Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.34 KB

OutcomeData.md

File metadata and controls

93 lines (50 loc) · 2.34 KB

OutcomeData

Properties

Name Type Description Notes
Id string
Value int32
Aggregation string

Methods

NewOutcomeData

func NewOutcomeData(id string, value int32, aggregation string, ) *OutcomeData

NewOutcomeData instantiates a new OutcomeData 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

NewOutcomeDataWithDefaults

func NewOutcomeDataWithDefaults() *OutcomeData

NewOutcomeDataWithDefaults instantiates a new OutcomeData 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

GetId

func (o *OutcomeData) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *OutcomeData) GetIdOk() (*string, bool)

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

SetId

func (o *OutcomeData) SetId(v string)

SetId sets Id field to given value.

GetValue

func (o *OutcomeData) GetValue() int32

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *OutcomeData) GetValueOk() (*int32, bool)

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

SetValue

func (o *OutcomeData) SetValue(v int32)

SetValue sets Value field to given value.

GetAggregation

func (o *OutcomeData) GetAggregation() string

GetAggregation returns the Aggregation field if non-nil, zero value otherwise.

GetAggregationOk

func (o *OutcomeData) GetAggregationOk() (*string, bool)

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

SetAggregation

func (o *OutcomeData) SetAggregation(v string)

SetAggregation sets Aggregation field to given value.

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