Class: Calendly::InviteeQuestionAndAnswer

Inherits:
Object
  • Object
show all
Includes:
ModelUtils
Defined in:
lib/calendly/models/invitee_question_and_answer.rb

Overview

Calendly’s InviteeQuestionAndAnswer model. An individual form question and response.

Instance Attribute Summary collapse

Method Summary

Methods included from ModelUtils

#client, #id, included, #initialize, #inspect

Instance Attribute Details

#answerString

The answer supplied by the invitee to this question.

Returns:

  • (String)


16
17
18
# File 'lib/calendly/models/invitee_question_and_answer.rb', line 16

def answer
  @answer
end

#positionInteger

The position of this question in the event booking confirmation form.

Returns:

  • (Integer)


19
20
21
# File 'lib/calendly/models/invitee_question_and_answer.rb', line 19

def position
  @position
end

#questionString

The question from the event booking confirmation form.

Returns:

  • (String)


13
14
15
# File 'lib/calendly/models/invitee_question_and_answer.rb', line 13

def question
  @question
end