Skip to content

Latest commit

 

History

History
138 lines (77 loc) · 3.48 KB

MonthlyTotal.md

File metadata and controls

138 lines (77 loc) · 3.48 KB

MonthlyTotal

Properties

Name Type Description Notes
Net Pointer to NullableFloat32 Monthly total net amount [optional]
Gross Pointer to NullableFloat32 Monthly total gross amount [optional]
Count Pointer to NullableFloat32 Monthly total receipt number [optional]

Methods

NewMonthlyTotal

func NewMonthlyTotal() *MonthlyTotal

NewMonthlyTotal instantiates a new MonthlyTotal 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

NewMonthlyTotalWithDefaults

func NewMonthlyTotalWithDefaults() *MonthlyTotal

NewMonthlyTotalWithDefaults instantiates a new MonthlyTotal 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

GetNet

func (o *MonthlyTotal) GetNet() float32

GetNet returns the Net field if non-nil, zero value otherwise.

GetNetOk

func (o *MonthlyTotal) GetNetOk() (*float32, bool)

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

SetNet

func (o *MonthlyTotal) SetNet(v float32)

SetNet sets Net field to given value.

HasNet

func (o *MonthlyTotal) HasNet() bool

HasNet returns a boolean if a field has been set.

SetNetNil

func (o *MonthlyTotal) SetNetNil(b bool)

SetNetNil sets the value for Net to be an explicit nil

UnsetNet

func (o *MonthlyTotal) UnsetNet()

UnsetNet ensures that no value is present for Net, not even an explicit nil

GetGross

func (o *MonthlyTotal) GetGross() float32

GetGross returns the Gross field if non-nil, zero value otherwise.

GetGrossOk

func (o *MonthlyTotal) GetGrossOk() (*float32, bool)

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

SetGross

func (o *MonthlyTotal) SetGross(v float32)

SetGross sets Gross field to given value.

HasGross

func (o *MonthlyTotal) HasGross() bool

HasGross returns a boolean if a field has been set.

SetGrossNil

func (o *MonthlyTotal) SetGrossNil(b bool)

SetGrossNil sets the value for Gross to be an explicit nil

UnsetGross

func (o *MonthlyTotal) UnsetGross()

UnsetGross ensures that no value is present for Gross, not even an explicit nil

GetCount

func (o *MonthlyTotal) GetCount() float32

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *MonthlyTotal) GetCountOk() (*float32, bool)

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

SetCount

func (o *MonthlyTotal) SetCount(v float32)

SetCount sets Count field to given value.

HasCount

func (o *MonthlyTotal) HasCount() bool

HasCount returns a boolean if a field has been set.

SetCountNil

func (o *MonthlyTotal) SetCountNil(b bool)

SetCountNil sets the value for Count to be an explicit nil

UnsetCount

func (o *MonthlyTotal) UnsetCount()

UnsetCount ensures that no value is present for Count, not even an explicit nil

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