Name | Type | Description | Notes |
---|---|---|---|
Detail | Pointer to string | [optional] | |
Error | Pointer to int32 | HTTP status code returned with this error. | [optional] |
ErrorCode | Pointer to string | Application error code returned with this error. | [optional] |
Parameters | Pointer to []string | [optional] | |
Reason | Pointer to string | Application error message returned with this error. | [optional] |
func NewApiError() *ApiError
NewApiError instantiates a new ApiError 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 NewApiErrorWithDefaults() *ApiError
NewApiErrorWithDefaults instantiates a new ApiError 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 *ApiError) GetDetail() string
GetDetail returns the Detail field if non-nil, zero value otherwise.
func (o *ApiError) GetDetailOk() (*string, bool)
GetDetailOk returns a tuple with the Detail field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiError) SetDetail(v string)
SetDetail sets Detail field to given value.
func (o *ApiError) HasDetail() bool
HasDetail returns a boolean if a field has been set.
func (o *ApiError) GetError() int32
GetError returns the Error field if non-nil, zero value otherwise.
func (o *ApiError) GetErrorOk() (*int32, bool)
GetErrorOk returns a tuple with the Error field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiError) SetError(v int32)
SetError sets Error field to given value.
func (o *ApiError) HasError() bool
HasError returns a boolean if a field has been set.
func (o *ApiError) GetErrorCode() string
GetErrorCode returns the ErrorCode field if non-nil, zero value otherwise.
func (o *ApiError) GetErrorCodeOk() (*string, bool)
GetErrorCodeOk returns a tuple with the ErrorCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiError) SetErrorCode(v string)
SetErrorCode sets ErrorCode field to given value.
func (o *ApiError) HasErrorCode() bool
HasErrorCode returns a boolean if a field has been set.
func (o *ApiError) GetParameters() []string
GetParameters returns the Parameters field if non-nil, zero value otherwise.
func (o *ApiError) GetParametersOk() (*[]string, bool)
GetParametersOk returns a tuple with the Parameters field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiError) SetParameters(v []string)
SetParameters sets Parameters field to given value.
func (o *ApiError) HasParameters() bool
HasParameters returns a boolean if a field has been set.
func (o *ApiError) GetReason() string
GetReason returns the Reason field if non-nil, zero value otherwise.
func (o *ApiError) GetReasonOk() (*string, bool)
GetReasonOk returns a tuple with the Reason field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ApiError) SetReason(v string)
SetReason sets Reason field to given value.
func (o *ApiError) HasReason() bool
HasReason returns a boolean if a field has been set.