Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Latest commit

 

History

History
93 lines (50 loc) · 2.38 KB

ValidationError.md

File metadata and controls

93 lines (50 loc) · 2.38 KB

ValidationError

Properties

Name Type Description Notes
Loc []LocationInner
Msg string
Type string

Methods

NewValidationError

func NewValidationError(loc []LocationInner, msg string, type_ string, ) *ValidationError

NewValidationError instantiates a new ValidationError 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

NewValidationErrorWithDefaults

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError 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

GetLoc

func (o *ValidationError) GetLoc() []LocationInner

GetLoc returns the Loc field if non-nil, zero value otherwise.

GetLocOk

func (o *ValidationError) GetLocOk() (*[]LocationInner, bool)

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

SetLoc

func (o *ValidationError) SetLoc(v []LocationInner)

SetLoc sets Loc field to given value.

GetMsg

func (o *ValidationError) GetMsg() string

GetMsg returns the Msg field if non-nil, zero value otherwise.

GetMsgOk

func (o *ValidationError) GetMsgOk() (*string, bool)

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

SetMsg

func (o *ValidationError) SetMsg(v string)

SetMsg sets Msg field to given value.

GetType

func (o *ValidationError) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ValidationError) GetTypeOk() (*string, bool)

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

SetType

func (o *ValidationError) SetType(v string)

SetType sets Type field to given value.

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