Sha256: 18085dc8f1095eebb21edad0d81ad30d0df02cfe39c7d3c9392f81df9c862cd3
Contents?: true
Size: 870 Bytes
Versions: 17
Compression:
Stored size: 870 Bytes
Contents
# frozen_string_literal: true module Files class InboxRegistration attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - Registration cookie code def code @attributes[:code] end # string - Registrant name def name @attributes[:name] end # string - Registrant company name def company @attributes[:company] end # string - Registrant email address def email @attributes[:email] end # int64 - Id of associated form field set def form_field_set_id @attributes[:form_field_set_id] end # string - Data for form field set with form field ids as keys and user data as values def form_field_data @attributes[:form_field_data] end end end
Version data entries
17 entries across 17 versions & 1 rubygems