Sha256: eb15915936f9b610264897916d1abf6a59dd2d036ee3bd1414e8ad8b163075f8
Contents?: true
Size: 833 Bytes
Versions: 25
Compression:
Stored size: 833 Bytes
Contents
module Unit class ApplicationForm < APIResource path '/application-forms' attribute :tags, Types::Hash # Optional attribute :allowed_application_types, Types::Array # Optional. Array of Individual, Business or SoleProprietorship. attribute :applicant_details, Types::ApplicationFormPrefill # Optional. Add data that is already known about the end-customer to be auto populated on the form. attribute :settings_override, Types::ApplicationFormSettingsOverride # Optional. Override disclosure URLs that were defined in the application form settings. attribute :stage, Types::String, readonly: true attribute :url, Types::String, readonly: true belongs_to :application, class_name: 'Unit::IndividualApplication' include ResourceOperations::Create include ResourceOperations::Find end end
Version data entries
25 entries across 25 versions & 1 rubygems