Skip to content

Latest commit

 

History

History
177 lines (94 loc) · 4.33 KB

File metadata and controls

177 lines (94 loc) · 4.33 KB

InvoiceItems

Properties

Name Type Description Notes
Brutto string
Name string
Netto string
Price string
Quantity float32
VatAmount string
VatRate string

Methods

NewInvoiceItems

func NewInvoiceItems(brutto string, name string, netto string, price string, quantity float32, vatAmount string, vatRate string, ) *InvoiceItems

NewInvoiceItems instantiates a new InvoiceItems 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

NewInvoiceItemsWithDefaults

func NewInvoiceItemsWithDefaults() *InvoiceItems

NewInvoiceItemsWithDefaults instantiates a new InvoiceItems 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

GetBrutto

func (o *InvoiceItems) GetBrutto() string

GetBrutto returns the Brutto field if non-nil, zero value otherwise.

GetBruttoOk

func (o *InvoiceItems) GetBruttoOk() (*string, bool)

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

SetBrutto

func (o *InvoiceItems) SetBrutto(v string)

SetBrutto sets Brutto field to given value.

GetName

func (o *InvoiceItems) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *InvoiceItems) GetNameOk() (*string, bool)

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

SetName

func (o *InvoiceItems) SetName(v string)

SetName sets Name field to given value.

GetNetto

func (o *InvoiceItems) GetNetto() string

GetNetto returns the Netto field if non-nil, zero value otherwise.

GetNettoOk

func (o *InvoiceItems) GetNettoOk() (*string, bool)

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

SetNetto

func (o *InvoiceItems) SetNetto(v string)

SetNetto sets Netto field to given value.

GetPrice

func (o *InvoiceItems) GetPrice() string

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

GetPriceOk

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

SetPrice sets Price field to given value.

GetQuantity

func (o *InvoiceItems) GetQuantity() float32

GetQuantity returns the Quantity field if non-nil, zero value otherwise.

GetQuantityOk

func (o *InvoiceItems) GetQuantityOk() (*float32, bool)

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

SetQuantity

func (o *InvoiceItems) SetQuantity(v float32)

SetQuantity sets Quantity field to given value.

GetVatAmount

func (o *InvoiceItems) GetVatAmount() string

GetVatAmount returns the VatAmount field if non-nil, zero value otherwise.

GetVatAmountOk

func (o *InvoiceItems) GetVatAmountOk() (*string, bool)

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

SetVatAmount

func (o *InvoiceItems) SetVatAmount(v string)

SetVatAmount sets VatAmount field to given value.

GetVatRate

func (o *InvoiceItems) GetVatRate() string

GetVatRate returns the VatRate field if non-nil, zero value otherwise.

GetVatRateOk

func (o *InvoiceItems) GetVatRateOk() (*string, bool)

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

SetVatRate

func (o *InvoiceItems) SetVatRate(v string)

SetVatRate sets VatRate field to given value.

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