Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 692 Bytes

File metadata and controls

22 lines (16 loc) · 692 Bytes

UltracartClient::OrderValidationResponse

Properties

Name Type Description Notes
errors Array<String> Errors to display to the merchant if they failed any of the validations checked [optional]
messages Array<String> Informational messages [optional]
order_was_updated Boolean If true, this order was updated during the validation call. This may happen during address standardization fixes. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OrderValidationResponse.new(
  errors: null,
  messages: null,
  order_was_updated: null
)