Skip to content

Commit

Permalink
Updating onboard entity requests
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko committed Mar 19, 2024
1 parent 2b5da1a commit 23cc5d4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion lib/checkout_sdk/accounts/entity_financial_details.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ module Accounts
# @return [Integer]
# @!attribute documents
# @return [EntityFinancialDocuments]
# @!attribute currency
# @return [String] {CheckoutSdk::Common::Currency}
class EntityFinancialDetails
attr_accessor :annual_processing_volume,
:average_transaction_value,
:highest_transaction_value,
:documents
:documents,
:currency
end
end
end
5 changes: 4 additions & 1 deletion lib/checkout_sdk/accounts/individual.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ module Accounts
# @return [PlaceOfBirth]
# @!attribute identification
# @return [Identification]
# @!attribute financial_details
# @return [EntityFinancialDetails]
class Individual
attr_accessor :first_name,
:middle_name,
Expand All @@ -32,7 +34,8 @@ class Individual
:registered_address,
:date_of_birth,
:place_of_birth,
:identification
:identification,
:financial_details
end
end
end
5 changes: 4 additions & 1 deletion lib/checkout_sdk/accounts/representative.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ module Accounts
# @return [PlaceOfBirth]
# @!attribute roles
# @return [Array(String)]
# @!attribute documents
# @return [OnboardSubEntityDocuments]
class Representative
attr_accessor :id,
:first_name,
Expand All @@ -29,7 +31,8 @@ class Representative
:phone,
:date_of_birth,
:place_of_birth,
:roles
:roles,
:documents
end
end
end

0 comments on commit 23cc5d4

Please sign in to comment.