Class: UU::Fairpay2::BusinessCase::ClientAccountBusinessCaseSetAttributes
- Inherits:
-
OS::REST::DTO
- Object
- OS::REST::DTO
- UU::Fairpay2::BusinessCase::ClientAccountBusinessCaseSetAttributes
- Defined in:
- lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb
Overview
Value object representing data to set Client Account Business Case entity.
Instance Attribute Summary (collapse)
-
- (String) authorized_accounts
Authorized Accounts on Client Account Business Case.
-
- (String) authorized_persons
Authorized Persons on Client Account Business Case.
-
- (Fixnum) available_balance
Available balance on Client Account Business Case.
-
- (String) client_account_number
Client Account number of the client.
-
- (String) client_uuee_universe_id
Client uuEE universe id on Client Account Business Case.
-
- (String) code
Code of Client Account Business Case.
-
- (String) currency_code
Currency code on Client Account Business Case.
-
- (Fixnum) current_balance
Current balance on Client Account Business Case.
-
- (Fixnum) daily_limit
Daily withdrawal limit of the related Account.
-
- (String) description
Description of client account business case.
-
- (Fixnum) monthly_limit
Monthly withdrawal limit of the related Account.
-
- (String) name
Name of Client Account Business Case.
-
- (Fixnum) overdraft_limit
Overdraft limit of the related Account.
-
- (String) user_universe_id
User universe id of client.
-
- (Fixnum) weekly_limit
Weekly withdrawal limit of the related Account.
Instance Attribute Details
- (String) authorized_accounts
Authorized Accounts on Client Account Business Case. Must not be empty string, must not contain whitespace characters only and must not be longer than 4000 characters.
93 94 95 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 93 def @authorized_accounts end |
- (String) authorized_persons
Authorized Persons on Client Account Business Case. Must not be empty string, must not contain whitespace characters only and must not be longer than 4000 characters.
87 88 89 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 87 def @authorized_persons end |
- (Fixnum) available_balance
Available balance on Client Account Business Case. Cannot be empty, whitespace only or invalid Fixnum.
75 76 77 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 75 def available_balance @available_balance end |
- (String) client_account_number
Client Account number of the client. Must not be empty string, must not contain whitespace characters only and must not be longer than 250 characters.
63 64 65 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 63 def client_account_number @client_account_number end |
- (String) client_uuee_universe_id
Client uuEE universe id on Client Account Business Case. Must not be empty string, must not contain whitespace characters only and must not be longer than 4000 characters.
69 70 71 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 69 def client_uuee_universe_id @client_uuee_universe_id end |
- (String) code
Code of Client Account Business Case. The value is trimmed. If null is set, the code is generated automatically.
21 22 23 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 21 def code @code end |
- (String) currency_code
Currency code on Client Account Business Case. Must not be empty string, must not contain whitespace characters only and must not be longer than 4000 characters.
99 100 101 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 99 def currency_code @currency_code end |
- (Fixnum) current_balance
Current balance on Client Account Business Case. Cannot be empty, whitespace only or invalid Fixnum.
81 82 83 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 81 def current_balance @current_balance end |
- (Fixnum) daily_limit
Daily withdrawal limit of the related Account. Cannot be empty, whitespace only or invalid Fixnum.
39 40 41 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 39 def daily_limit @daily_limit end |
- (String) description
Description of client account business case. Cannot be longer than 4000 characters.
27 28 29 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 27 def description @description end |
- (Fixnum) monthly_limit
Monthly withdrawal limit of the related Account. Cannot be empty, whitespace only or invalid Fixnum.
51 52 53 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 51 def monthly_limit @monthly_limit end |
- (String) name
Name of Client Account Business Case. The value is trimmed.
15 16 17 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 15 def name @name end |
- (Fixnum) overdraft_limit
Overdraft limit of the related Account. Required attribute, cannot be null or invalid Fixnum.
57 58 59 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 57 def overdraft_limit @overdraft_limit end |
- (String) user_universe_id
User universe id of client. Must not be empty string, must not contain whitespace characters only and must not be longer than 250 characters.
33 34 35 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 33 def user_universe_id @user_universe_id end |
- (Fixnum) weekly_limit
Weekly withdrawal limit of the related Account. Cannot be empty, whitespace only or invalid Fixnum.
45 46 47 |
# File 'lib/uu/fairpay2/businesscase/client_account_business_case_set_attributes.rb', line 45 def weekly_limit @weekly_limit end |