Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.47 KB

ErrorForbidden.md

File metadata and controls

134 lines (73 loc) · 3.47 KB

ErrorForbidden

Properties

Name Type Description Notes
Status Pointer to int32 [optional]
Summary Pointer to string [optional]
Description Pointer to string [optional]
Message Pointer to string [optional]

Methods

NewErrorForbidden

func NewErrorForbidden() *ErrorForbidden

NewErrorForbidden instantiates a new ErrorForbidden 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

NewErrorForbiddenWithDefaults

func NewErrorForbiddenWithDefaults() *ErrorForbidden

NewErrorForbiddenWithDefaults instantiates a new ErrorForbidden 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

GetStatus

func (o *ErrorForbidden) GetStatus() int32

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

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

SetStatus

func (o *ErrorForbidden) SetStatus(v int32)

SetStatus sets Status field to given value.

HasStatus

func (o *ErrorForbidden) HasStatus() bool

HasStatus returns a boolean if a field has been set.

GetSummary

func (o *ErrorForbidden) GetSummary() string

GetSummary returns the Summary field if non-nil, zero value otherwise.

GetSummaryOk

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

SetSummary

func (o *ErrorForbidden) SetSummary(v string)

SetSummary sets Summary field to given value.

HasSummary

func (o *ErrorForbidden) HasSummary() bool

HasSummary returns a boolean if a field has been set.

GetDescription

func (o *ErrorForbidden) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

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

SetDescription

func (o *ErrorForbidden) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ErrorForbidden) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetMessage

func (o *ErrorForbidden) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *ErrorForbidden) GetMessageOk() (*string, bool)

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

SetMessage

func (o *ErrorForbidden) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *ErrorForbidden) HasMessage() bool

HasMessage returns a boolean if a field has been set.

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