Question Set Response
This is an object representing a set of questions asked to a customer on OutSavvy.
Public fields
- id integer: The id of the question set
- event_id integer: The id of the event on OutSavvy the question set is associated with
- active boolean: Is this question set currently active?
- changed datetime: When the question set was last changed
- questions question: The list of questions asked at checkout to customers
Question Response
This is an object representing a question asked to a customer on OutSavvy.
Public fields
- id integer: The id of the question
- question string: The question
- type integer: One of text_box, check_box, radio_list, drop_down_list, date_of_birth, address, check_box_list, first_name, last_name, email_address
- order integer: The order of the question
- required boolean: Is this field required for the customer to complete
- active boolean: Is this current question active?
- changed datetime: The time the question was last changed
- choices choice: An optional list of question choices for multiple choice controls
Choice Response
This is an object representing a choice for a question.
Public fields
- id integer: The id of the question choice
- option string: The option
- order integer: The order of the choices
- active boolean: Is this choice active?