Skip to main content

SubmitOfferValidationError

Validation errors returned by the insurance system when submitting the offer. These errors need to be resolved before the offer can be submitted.

type SubmitOfferValidationError implements ErrorInterface {
message: String!
validationErrors: [InsuranceSystemValidationError!]!
}

Fields​

SubmitOfferValidationError.message ● String! non-null scalar​

SubmitOfferValidationError.validationErrors ● [InsuranceSystemValidationError!]! non-null object​

The list of validation errors returned by the insurance system.

Interfaces​

ErrorInterface interface​

Error interface for all errors that can be returned by the API. Always include the ErrorInterface in your request so any error returned by the API will be returned.

Implemented By​

SubmitOfferResult union