Sha256: ab0dc383720f92b2f5a28e42abc10b8fb26ff969ca85fe4e0d206dea635ee8c9
Contents?: true
Size: 611 Bytes
Versions: 3
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true module Calendly # Routing Form Submission question with answer. class RoutingFormSubmissionQuestionAndAnswer include ModelUtils # @return [String] # Unique identifier for the routing form question. attr_accessor :question_uuid alias uuid question_uuid # @return [String] # Question name (in human-readable format). attr_accessor :question # @return [String] # Answer provided by the respondent when the form was submitted. attr_accessor :answer private def inspect_attributes super + %i[question] end end end
Version data entries
3 entries across 3 versions & 1 rubygems