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] |
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
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
func (o *ErrorFieldDomainContactsValidate) GetCode() string
GetCode returns the Code field if non-nil, zero value otherwise.
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.
func (o *ErrorFieldDomainContactsValidate) SetCode(v string)
SetCode sets Code field to given value.
func (o *ErrorFieldDomainContactsValidate) GetDomains() []string
GetDomains returns the Domains field if non-nil, zero value otherwise.
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.
func (o *ErrorFieldDomainContactsValidate) SetDomains(v []string)
SetDomains sets Domains field to given value.
func (o *ErrorFieldDomainContactsValidate) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
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.
func (o *ErrorFieldDomainContactsValidate) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *ErrorFieldDomainContactsValidate) HasMessage() bool
HasMessage returns a boolean if a field has been set.
func (o *ErrorFieldDomainContactsValidate) GetPath() string
GetPath returns the Path field if non-nil, zero value otherwise.
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.
func (o *ErrorFieldDomainContactsValidate) SetPath(v string)
SetPath sets Path field to given value.
func (o *ErrorFieldDomainContactsValidate) GetPathRelated() string
GetPathRelated returns the PathRelated field if non-nil, zero value otherwise.
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.
func (o *ErrorFieldDomainContactsValidate) SetPathRelated(v string)
SetPathRelated sets PathRelated field to given value.
func (o *ErrorFieldDomainContactsValidate) HasPathRelated() bool
HasPathRelated returns a boolean if a field has been set.