class Calendly::EventTypeCustomQuestion

Calendly's custom question model.

Attributes

answer_choices[RW]

@return [Array<String>] The invitee’s option(s) for single_select or multi_select type of responses.

enabled[RW]

@return [Boolean] true if the question created by the host is turned ON and visible on the event booking page; false if turned OFF and invisible on the event booking page.

include_other[RW]

@return [Boolean] true if the custom question lets invitees record a written response in addition to single-select or multiple-select type of responses; false if it doesn’t.

name[RW]

@return [String] The custom question that the host created for the event type.

position[RW]

@return [Integer] The numerical position of the question on the event booking page after the name and email address fields.

required[RW]

@return [Boolean] true if a response to the question created by the host is required for invitees to book the event type; false if not required.

type[RW]

@return [String] The type of response that the invitee provides to the custom question; can be one or multiple lines of text, a phone number, or single- or multiple-select.

Private Instance Methods

inspect_attributes() click to toggle source
Calls superclass method Calendly::ModelUtils#inspect_attributes
# File lib/calendly/models/event_type_custom_question.rb, line 44
def inspect_attributes
  super + %i[enabled position]
end