Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.9 KB

ApiErrorResponse.md

File metadata and controls

72 lines (39 loc) · 1.9 KB

ApiErrorResponse

Properties

Name Type Description Notes
Code int64
Error string

Methods

NewApiErrorResponse

func NewApiErrorResponse(code int64, error_ string, ) *ApiErrorResponse

NewApiErrorResponse instantiates a new ApiErrorResponse 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

NewApiErrorResponseWithDefaults

func NewApiErrorResponseWithDefaults() *ApiErrorResponse

NewApiErrorResponseWithDefaults instantiates a new ApiErrorResponse 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

GetCode

func (o *ApiErrorResponse) GetCode() int64

GetCode returns the Code field if non-nil, zero value otherwise.

GetCodeOk

func (o *ApiErrorResponse) GetCodeOk() (*int64, bool)

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

SetCode

func (o *ApiErrorResponse) SetCode(v int64)

SetCode sets Code field to given value.

GetError

func (o *ApiErrorResponse) GetError() string

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

GetErrorOk

func (o *ApiErrorResponse) 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 *ApiErrorResponse) SetError(v string)

SetError sets Error field to given value.

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