Sha256: dbcf9f68932d81150d1f2e3a210ea370b0d3c0307088eb620944c1439bd4a54c
Contents?: true
Size: 555 Bytes
Versions: 5
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true module Calendly # Calendly's InviteeQuestionAndAnswer model. # An individual form question and response. class InviteeQuestionAndAnswer include ModelUtils # @return [String] # The question from the event booking confirmation form. attr_accessor :question # @return [String] # The answer supplied by the invitee to this question. attr_accessor :answer # @return [Integer] # The position of this question in the event booking confirmation form. attr_accessor :position end end
Version data entries
5 entries across 5 versions & 1 rubygems