Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 973 Bytes

File metadata and controls

28 lines (22 loc) · 973 Bytes

UltracartClient::SfvbCompileResponse

Properties

Name Type Description Notes
container_id String Container id the document compiled under. [optional]
directives Array<String> Velocity directives the compiled output declares. [optional]
success Boolean True when compilation produced output. [optional]
used_elements Array<String> Element types used, sorted. [optional]
validation SfvbValidationResponse [optional]
velocity String The compiled Velocity. This is the body only; the cache wrapper a stored .cjson gets is not included. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::SfvbCompileResponse.new(
  container_id: null,
  directives: null,
  success: null,
  used_elements: null,
  validation: null,
  velocity: null
)