Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.04 KB

Error.md

File metadata and controls

124 lines (67 loc) · 3.04 KB

Error

Properties

Name Type Description Notes
Status int32
Summary string
Description Pointer to string [optional]
Errors Pointer to []ErrorObject [optional]

Methods

NewError

func NewError(status int32, summary string, ) *Error

NewError instantiates a new Error 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

NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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

GetStatus

func (o *Error) GetStatus() int32

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *Error) GetStatusOk() (*int32, bool)

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

SetStatus

func (o *Error) SetStatus(v int32)

SetStatus sets Status field to given value.

GetSummary

func (o *Error) GetSummary() string

GetSummary returns the Summary field if non-nil, zero value otherwise.

GetSummaryOk

func (o *Error) GetSummaryOk() (*string, bool)

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

SetSummary

func (o *Error) SetSummary(v string)

SetSummary sets Summary field to given value.

GetDescription

func (o *Error) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *Error) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *Error) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Error) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetErrors

func (o *Error) GetErrors() []ErrorObject

GetErrors returns the Errors field if non-nil, zero value otherwise.

GetErrorsOk

func (o *Error) GetErrorsOk() (*[]ErrorObject, bool)

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

SetErrors

func (o *Error) SetErrors(v []ErrorObject)

SetErrors sets Errors field to given value.

HasErrors

func (o *Error) HasErrors() bool

HasErrors returns a boolean if a field has been set.

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