Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 4.97 KB

ErrorFieldDomainContactsValidate.md

File metadata and controls

145 lines (78 loc) · 4.97 KB

ErrorFieldDomainContactsValidate

Properties

Name Type Description Notes
Code string Short identifier for the error, suitable for indicating the specific error within client code
Domains []string An array of domain names the error is for. If tlds are specified in the request, `domains` will contain tlds. For example, if `domains` in request is ["test1.com", "test2.uk", "net"], and the field is invalid for com and net, then one of the `fields` in response will have ["test1.com", "net"] as `domains`
Message Pointer to string Human-readable, English description of the problem with the contents of the field [optional]
Path string 1) JSONPath referring to the field within the data containing an error<br/>or<br/>2) JSONPath referring to an object containing an error
PathRelated Pointer to string JSONPath referring to the field on the object referenced by `path` containing an error [optional]

Methods

NewErrorFieldDomainContactsValidate

func NewErrorFieldDomainContactsValidate(code string, domains []string, path string, ) *ErrorFieldDomainContactsValidate

NewErrorFieldDomainContactsValidate instantiates a new ErrorFieldDomainContactsValidate 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

NewErrorFieldDomainContactsValidateWithDefaults

func NewErrorFieldDomainContactsValidateWithDefaults() *ErrorFieldDomainContactsValidate

NewErrorFieldDomainContactsValidateWithDefaults instantiates a new ErrorFieldDomainContactsValidate 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 *ErrorFieldDomainContactsValidate) GetCode() string

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

GetCodeOk

func (o *ErrorFieldDomainContactsValidate) GetCodeOk() (*string, 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 *ErrorFieldDomainContactsValidate) SetCode(v string)

SetCode sets Code field to given value.

GetDomains

func (o *ErrorFieldDomainContactsValidate) GetDomains() []string

GetDomains returns the Domains field if non-nil, zero value otherwise.

GetDomainsOk

func (o *ErrorFieldDomainContactsValidate) GetDomainsOk() (*[]string, bool)

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

SetDomains

func (o *ErrorFieldDomainContactsValidate) SetDomains(v []string)

SetDomains sets Domains field to given value.

GetMessage

func (o *ErrorFieldDomainContactsValidate) GetMessage() string

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

GetMessageOk

func (o *ErrorFieldDomainContactsValidate) 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 *ErrorFieldDomainContactsValidate) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *ErrorFieldDomainContactsValidate) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetPath

func (o *ErrorFieldDomainContactsValidate) GetPath() string

GetPath returns the Path field if non-nil, zero value otherwise.

GetPathOk

func (o *ErrorFieldDomainContactsValidate) GetPathOk() (*string, bool)

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

SetPath

func (o *ErrorFieldDomainContactsValidate) SetPath(v string)

SetPath sets Path field to given value.

GetPathRelated

func (o *ErrorFieldDomainContactsValidate) GetPathRelated() string

GetPathRelated returns the PathRelated field if non-nil, zero value otherwise.

GetPathRelatedOk

func (o *ErrorFieldDomainContactsValidate) GetPathRelatedOk() (*string, bool)

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

SetPathRelated

func (o *ErrorFieldDomainContactsValidate) SetPathRelated(v string)

SetPathRelated sets PathRelated field to given value.

HasPathRelated

func (o *ErrorFieldDomainContactsValidate) HasPathRelated() bool

HasPathRelated returns a boolean if a field has been set.

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