Name | Type | Description | Notes |
---|---|---|---|
Status | int32 | ||
Summary | string | ||
Description | Pointer to string | [optional] | |
Errors | Pointer to []ErrorObject | [optional] |
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
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
func (o *Error) GetStatus() int32
GetStatus returns the Status field if non-nil, zero value otherwise.
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.
func (o *Error) SetStatus(v int32)
SetStatus sets Status field to given value.
func (o *Error) GetSummary() string
GetSummary returns the Summary field if non-nil, zero value otherwise.
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.
func (o *Error) SetSummary(v string)
SetSummary sets Summary field to given value.
func (o *Error) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
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.
func (o *Error) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Error) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *Error) GetErrors() []ErrorObject
GetErrors returns the Errors field if non-nil, zero value otherwise.
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.
func (o *Error) SetErrors(v []ErrorObject)
SetErrors sets Errors field to given value.
func (o *Error) HasErrors() bool
HasErrors returns a boolean if a field has been set.