Name | Type | Description | Notes |
---|---|---|---|
Errors | []InvalidFieldError | Fields that caused the error | |
Timestamp | string | Timestamp when the error occurred in the format <code>yyyy-MM-dd'T'HH:mm:ss.SSSZ</code>. | |
Endpoint | string | Endpoint caused the error |
func NewValidationError(errors []InvalidFieldError, timestamp string, endpoint 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
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
func (o *ValidationError) GetErrors() []InvalidFieldError
GetErrors returns the Errors field if non-nil, zero value otherwise.
func (o *ValidationError) GetErrorsOk() (*[]InvalidFieldError, bool)
GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ValidationError) SetErrors(v []InvalidFieldError)
SetErrors sets Errors field to given value.
func (o *ValidationError) GetTimestamp() string
GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
func (o *ValidationError) GetTimestampOk() (*string, bool)
GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ValidationError) SetTimestamp(v string)
SetTimestamp sets Timestamp field to given value.
func (o *ValidationError) GetEndpoint() string
GetEndpoint returns the Endpoint field if non-nil, zero value otherwise.
func (o *ValidationError) GetEndpointOk() (*string, bool)
GetEndpointOk returns a tuple with the Endpoint field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ValidationError) SetEndpoint(v string)
SetEndpoint sets Endpoint field to given value.