Sha256: a9467a6f8b97058a625075270c17d0387c17eca400d472e9d1e0a009f9122088
Contents?: true
Size: 1020 Bytes
Versions: 17
Compression:
Stored size: 1020 Bytes
Contents
# frozen_string_literal: true module Files class BundleRegistration 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 # string - InboxRegistration cookie code, if there is an associated InboxRegistration def inbox_code @attributes[:inbox_code] 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