Skip to content

Latest commit

 

History

History
176 lines (95 loc) · 4.68 KB

Error.md

File metadata and controls

176 lines (95 loc) · 4.68 KB

Error

Properties

Name Type Description Notes
ErrorCode string Error code [readonly]
ErrorMessage string Error message [readonly]
CorrelationId Pointer to string Correlation ID identifying the request [optional] [readonly]
Details Pointer to string Error details [optional] [readonly]
Help Pointer to string Link to the help information [optional] [readonly]
AdditionalInfo Pointer to []ErrorAdditionalInfo Collection of additional information [optional] [readonly]

Methods

NewError

func NewError(errorCode string, errorMessage 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

GetErrorCode

func (o *Error) GetErrorCode() string

GetErrorCode returns the ErrorCode field if non-nil, zero value otherwise.

GetErrorCodeOk

func (o *Error) 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.

SetErrorCode

func (o *Error) SetErrorCode(v string)

SetErrorCode sets ErrorCode field to given value.

GetErrorMessage

func (o *Error) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field if non-nil, zero value otherwise.

GetErrorMessageOk

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

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

SetErrorMessage

func (o *Error) SetErrorMessage(v string)

SetErrorMessage sets ErrorMessage field to given value.

GetCorrelationId

func (o *Error) GetCorrelationId() string

GetCorrelationId returns the CorrelationId field if non-nil, zero value otherwise.

GetCorrelationIdOk

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

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

SetCorrelationId

func (o *Error) SetCorrelationId(v string)

SetCorrelationId sets CorrelationId field to given value.

HasCorrelationId

func (o *Error) HasCorrelationId() bool

HasCorrelationId returns a boolean if a field has been set.

GetDetails

func (o *Error) GetDetails() string

GetDetails returns the Details field if non-nil, zero value otherwise.

GetDetailsOk

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

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

SetDetails

func (o *Error) SetDetails(v string)

SetDetails sets Details field to given value.

HasDetails

func (o *Error) HasDetails() bool

HasDetails returns a boolean if a field has been set.

GetHelp

func (o *Error) GetHelp() string

GetHelp returns the Help field if non-nil, zero value otherwise.

GetHelpOk

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

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

SetHelp

func (o *Error) SetHelp(v string)

SetHelp sets Help field to given value.

HasHelp

func (o *Error) HasHelp() bool

HasHelp returns a boolean if a field has been set.

GetAdditionalInfo

func (o *Error) GetAdditionalInfo() []ErrorAdditionalInfo

GetAdditionalInfo returns the AdditionalInfo field if non-nil, zero value otherwise.

GetAdditionalInfoOk

func (o *Error) GetAdditionalInfoOk() (*[]ErrorAdditionalInfo, bool)

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

SetAdditionalInfo

func (o *Error) SetAdditionalInfo(v []ErrorAdditionalInfo)

SetAdditionalInfo sets AdditionalInfo field to given value.

HasAdditionalInfo

func (o *Error) HasAdditionalInfo() bool

HasAdditionalInfo returns a boolean if a field has been set.

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