Module: Dataleon::Models::CompanyRegistration::TechnicalData::PortalStep

Extended by:
Internal::Type::Enum
Defined in:
lib/dataleon/models/company_registration.rb

Constant Summary collapse

IDENTITY_VERIFICATION =
:identity_verification
DOCUMENT_SIGNING =
:document_signing
PROOF_OF_ADDRESS =
:proof_of_address
SELFIE =
:selfie
FACE_MATCH =
:face_match

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/dataleon/models/company_registration.rb', line 1012

Instance Method Details

#initialize(active_aml_suspicions: nil, api_version: nil, approved_at: nil, approved_by: nil, callback_url: nil, callback_url_notification: nil, disable_notification: nil, disable_notification_date: nil, export_type: nil, filtering_score_aml_suspicions: nil, finished_at: nil, ip: nil, language: nil, location_ip: nil, need_review_at: nil, need_review_by: nil, notification_confirmation: nil, portal_steps: nil, qr_code: nil, raw_data: nil, rejected_at: nil, rejected_by: nil, session_duration: nil, started_at: nil, transfer_at: nil, transfer_mode: nil) ⇒ Object

Some parameter documentations has been truncated, see Dataleon::Models::CompanyRegistration::TechnicalData for more details.

Technical metadata related to the request, such as IP address, QR code settings, and callback URLs.

Parameters:

  • active_aml_suspicions (Boolean) (defaults to: nil)

    Flag indicating whether there are active research AML (Anti-Money Laundering) su

  • api_version (Integer) (defaults to: nil)

    Version number of the API used.

  • approved_at (Time) (defaults to: nil)

    Timestamp when the request or process was approved.

  • approved_by (String, nil) (defaults to: nil)

    Identifier of the actor who approved (e.g., user id or username).

  • callback_url (String) (defaults to: nil)

    URL to receive callback data from the AML system.

  • callback_url_notification (String) (defaults to: nil)

    URL to receive notification updates about the processing status.

  • disable_notification (Boolean) (defaults to: nil)

    Flag to indicate if notifications are disabled.

  • disable_notification_date (Time, nil) (defaults to: nil)

    Timestamp when notifications were disabled; null if never disabled.

  • export_type (String) (defaults to: nil)

    Export format defined by the API (e.g., “json”, “xml”).

  • filtering_score_aml_suspicions (Float) (defaults to: nil)

    Minimum filtering score (between 0 and 1) for AML suspicions to be considered.

  • finished_at (Time) (defaults to: nil)

    Timestamp when the process finished.

  • ip (String) (defaults to: nil)

    IP address of the our system handling the request.

  • language (String) (defaults to: nil)

    Language preference used in the client workspace (e.g., “fra”).

  • location_ip (String) (defaults to: nil)

    IP address of the end client (final user) captured.

  • need_review_at (Time, nil) (defaults to: nil)

    Timestamp indicating when the request or process needs review; null if none.

  • need_review_by (String, nil) (defaults to: nil)

    Identifier of the actor who requested review (e.g., user id or username).

  • notification_confirmation (Boolean) (defaults to: nil)

    Flag indicating if notification confirmation is required or received.

  • portal_steps (Array<Symbol, Dataleon::Models::CompanyRegistration::TechnicalData::PortalStep>) (defaults to: nil)

    List of steps to include in the portal workflow.

  • qr_code (String) (defaults to: nil)

    Indicates whether QR code is enabled (“true” or “false”).

  • raw_data (Boolean) (defaults to: nil)

    Flag indicating whether to include raw data in the response.

  • rejected_at (Time, nil) (defaults to: nil)

    Timestamp when the request or process was rejected; null if not rejected.

  • rejected_by (String, nil) (defaults to: nil)

    Identifier of the actor who rejected (e.g., user id or username).

  • session_duration (Integer) (defaults to: nil)

    Duration of the user session in seconds.

  • started_at (Time) (defaults to: nil)

    Timestamp when the process started.

  • transfer_at (Time) (defaults to: nil)

    Date/time of data transfer.

  • transfer_mode (String) (defaults to: nil)

    Mode of data transfer.



1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
# File 'lib/dataleon/models/company_registration.rb', line 1003

module PortalStep
  extend Dataleon::Internal::Type::Enum

  IDENTITY_VERIFICATION = :identity_verification
  DOCUMENT_SIGNING = :document_signing
  PROOF_OF_ADDRESS = :proof_of_address
  SELFIE = :selfie
  FACE_MATCH = :face_match

  # @!method self.values
  #   @return [Array<Symbol>]
end