Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.29 KB

ApiInternalConsistencyError.md

File metadata and controls

108 lines (59 loc) · 3.29 KB

ApiInternalConsistencyError

Properties

Name Type Description Notes
Error string Error text
ErrorID string Error ID
OriginalError Pointer to NullableString Upstream error description [optional]

Methods

NewApiInternalConsistencyError

func NewApiInternalConsistencyError(error_ string, errorID string, ) *ApiInternalConsistencyError

NewApiInternalConsistencyError instantiates a new ApiInternalConsistencyError 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

NewApiInternalConsistencyErrorWithDefaults

func NewApiInternalConsistencyErrorWithDefaults() *ApiInternalConsistencyError

NewApiInternalConsistencyErrorWithDefaults instantiates a new ApiInternalConsistencyError 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

GetError

func (o *ApiInternalConsistencyError) GetError() string

GetError returns the Error field if non-nil, zero value otherwise.

GetErrorOk

func (o *ApiInternalConsistencyError) GetErrorOk() (*string, 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.

SetError

func (o *ApiInternalConsistencyError) SetError(v string)

SetError sets Error field to given value.

GetErrorID

func (o *ApiInternalConsistencyError) GetErrorID() string

GetErrorID returns the ErrorID field if non-nil, zero value otherwise.

GetErrorIDOk

func (o *ApiInternalConsistencyError) GetErrorIDOk() (*string, bool)

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

SetErrorID

func (o *ApiInternalConsistencyError) SetErrorID(v string)

SetErrorID sets ErrorID field to given value.

GetOriginalError

func (o *ApiInternalConsistencyError) GetOriginalError() string

GetOriginalError returns the OriginalError field if non-nil, zero value otherwise.

GetOriginalErrorOk

func (o *ApiInternalConsistencyError) GetOriginalErrorOk() (*string, bool)

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

SetOriginalError

func (o *ApiInternalConsistencyError) SetOriginalError(v string)

SetOriginalError sets OriginalError field to given value.

HasOriginalError

func (o *ApiInternalConsistencyError) HasOriginalError() bool

HasOriginalError returns a boolean if a field has been set.

SetOriginalErrorNil

func (o *ApiInternalConsistencyError) SetOriginalErrorNil(b bool)

SetOriginalErrorNil sets the value for OriginalError to be an explicit nil

UnsetOriginalError

func (o *ApiInternalConsistencyError) UnsetOriginalError()

UnsetOriginalError ensures that no value is present for OriginalError, not even an explicit nil

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