Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 981 Bytes

File metadata and controls

28 lines (22 loc) · 981 Bytes

UltracartClient::SfvbRenderResponse

Properties

Name Type Description Notes
errors Array<SfvbErrorDetail> Why the render failed. Always populated when success is false. [optional]
html String Rendered HTML. [optional]
pending_translation_count Integer Number of strings still awaiting translation in the requested language. [optional]
success Boolean True when HTML was produced. [optional]
truncated Boolean True when the HTML was cut short. [optional]
warnings Array<SfvbErrorDetail> Quality warnings about the rendered node. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::SfvbRenderResponse.new(
  errors: null,
  html: null,
  pending_translation_count: null,
  success: null,
  truncated: null,
  warnings: null
)