Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 8.33 KB

ApiPaymentView.md

File metadata and controls

238 lines (129 loc) · 8.33 KB

ApiPaymentView

Properties

Name Type Description Notes
AmountBilledCents Pointer to int64 Sum of services that the specified organization consumed in the period covered in this invoice. This parameter expresses its value in cents (100ths of one US Dollar) and calculates its value as subtotalCents + salesTaxCents - startingBalanceCents. [optional] [readonly]
AmountPaidCents Pointer to int64 Sum that the specified organization paid toward the associated invoice. This parameter expresses its value in cents (100ths of one US Dollar). [optional] [readonly]
Created Pointer to time.Time Date and time when the customer made this payment attempt. This parameter expresses its value in the ISO 8601 timestamp format in UTC. [optional] [readonly]
Id Pointer to string Unique 24-hexadecimal digit string that identifies this payment toward the associated invoice. [optional] [readonly]
SalesTaxCents Pointer to int64 Sum of sales tax applied to this invoice. This parameter expresses its value in cents (100ths of one US Dollar). [optional] [readonly]
StatusName Pointer to string Phase of payment processing for the associated invoice when you made this request. These phases include: Phase Value
SubtotalCents Pointer to int64 Sum of all positive invoice line items contained in this invoice. This parameter expresses its value in cents (100ths of one US Dollar). [optional] [readonly]
Updated Pointer to time.Time Date and time when the customer made an update to this payment attempt. This parameter expresses its value in the ISO 8601 timestamp format in UTC. [optional] [readonly]

Methods

NewApiPaymentView

func NewApiPaymentView() *ApiPaymentView

NewApiPaymentView instantiates a new ApiPaymentView 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

NewApiPaymentViewWithDefaults

func NewApiPaymentViewWithDefaults() *ApiPaymentView

NewApiPaymentViewWithDefaults instantiates a new ApiPaymentView 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

GetAmountBilledCents

func (o *ApiPaymentView) GetAmountBilledCents() int64

GetAmountBilledCents returns the AmountBilledCents field if non-nil, zero value otherwise.

GetAmountBilledCentsOk

func (o *ApiPaymentView) GetAmountBilledCentsOk() (*int64, bool)

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

SetAmountBilledCents

func (o *ApiPaymentView) SetAmountBilledCents(v int64)

SetAmountBilledCents sets AmountBilledCents field to given value.

HasAmountBilledCents

func (o *ApiPaymentView) HasAmountBilledCents() bool

HasAmountBilledCents returns a boolean if a field has been set.

GetAmountPaidCents

func (o *ApiPaymentView) GetAmountPaidCents() int64

GetAmountPaidCents returns the AmountPaidCents field if non-nil, zero value otherwise.

GetAmountPaidCentsOk

func (o *ApiPaymentView) GetAmountPaidCentsOk() (*int64, bool)

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

SetAmountPaidCents

func (o *ApiPaymentView) SetAmountPaidCents(v int64)

SetAmountPaidCents sets AmountPaidCents field to given value.

HasAmountPaidCents

func (o *ApiPaymentView) HasAmountPaidCents() bool

HasAmountPaidCents returns a boolean if a field has been set.

GetCreated

func (o *ApiPaymentView) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *ApiPaymentView) GetCreatedOk() (*time.Time, bool)

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

SetCreated

func (o *ApiPaymentView) SetCreated(v time.Time)

SetCreated sets Created field to given value.

HasCreated

func (o *ApiPaymentView) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetId

func (o *ApiPaymentView) GetId() string

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

GetIdOk

func (o *ApiPaymentView) 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 *ApiPaymentView) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *ApiPaymentView) HasId() bool

HasId returns a boolean if a field has been set.

GetSalesTaxCents

func (o *ApiPaymentView) GetSalesTaxCents() int64

GetSalesTaxCents returns the SalesTaxCents field if non-nil, zero value otherwise.

GetSalesTaxCentsOk

func (o *ApiPaymentView) GetSalesTaxCentsOk() (*int64, bool)

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

SetSalesTaxCents

func (o *ApiPaymentView) SetSalesTaxCents(v int64)

SetSalesTaxCents sets SalesTaxCents field to given value.

HasSalesTaxCents

func (o *ApiPaymentView) HasSalesTaxCents() bool

HasSalesTaxCents returns a boolean if a field has been set.

GetStatusName

func (o *ApiPaymentView) GetStatusName() string

GetStatusName returns the StatusName field if non-nil, zero value otherwise.

GetStatusNameOk

func (o *ApiPaymentView) GetStatusNameOk() (*string, bool)

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

SetStatusName

func (o *ApiPaymentView) SetStatusName(v string)

SetStatusName sets StatusName field to given value.

HasStatusName

func (o *ApiPaymentView) HasStatusName() bool

HasStatusName returns a boolean if a field has been set.

GetSubtotalCents

func (o *ApiPaymentView) GetSubtotalCents() int64

GetSubtotalCents returns the SubtotalCents field if non-nil, zero value otherwise.

GetSubtotalCentsOk

func (o *ApiPaymentView) GetSubtotalCentsOk() (*int64, bool)

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

SetSubtotalCents

func (o *ApiPaymentView) SetSubtotalCents(v int64)

SetSubtotalCents sets SubtotalCents field to given value.

HasSubtotalCents

func (o *ApiPaymentView) HasSubtotalCents() bool

HasSubtotalCents returns a boolean if a field has been set.

GetUpdated

func (o *ApiPaymentView) GetUpdated() time.Time

GetUpdated returns the Updated field if non-nil, zero value otherwise.

GetUpdatedOk

func (o *ApiPaymentView) GetUpdatedOk() (*time.Time, bool)

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

SetUpdated

func (o *ApiPaymentView) SetUpdated(v time.Time)

SetUpdated sets Updated field to given value.

HasUpdated

func (o *ApiPaymentView) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

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