Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.15 KB

File metadata and controls

82 lines (45 loc) · 2.15 KB

BillingStatus

Properties

Name Type Description Notes
IsValid Pointer to bool [optional]
Message Pointer to string [optional]

Methods

NewBillingStatus

func NewBillingStatus() *BillingStatus

NewBillingStatus instantiates a new BillingStatus 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

NewBillingStatusWithDefaults

func NewBillingStatusWithDefaults() *BillingStatus

NewBillingStatusWithDefaults instantiates a new BillingStatus 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

GetIsValid

func (o *BillingStatus) GetIsValid() bool

GetIsValid returns the IsValid field if non-nil, zero value otherwise.

GetIsValidOk

func (o *BillingStatus) GetIsValidOk() (*bool, bool)

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

SetIsValid

func (o *BillingStatus) SetIsValid(v bool)

SetIsValid sets IsValid field to given value.

HasIsValid

func (o *BillingStatus) HasIsValid() bool

HasIsValid returns a boolean if a field has been set.

GetMessage

func (o *BillingStatus) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *BillingStatus) GetMessageOk() (*string, bool)

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

SetMessage

func (o *BillingStatus) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *BillingStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

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