Class: Unit::Account::Deposit::CloseDepositAccountRequest
- Inherits:
-
Object
- Object
- Unit::Account::Deposit::CloseDepositAccountRequest
- Defined in:
- lib/unit/models/account/deposit/close_deposit_account_request.rb
Instance Attribute Summary collapse
-
#account_id ⇒ Object
readonly
Returns the value of attribute account_id.
-
#fraud_reason ⇒ Object
readonly
Returns the value of attribute fraud_reason.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize(account_id, reason, fraud_reason = nil) ⇒ CloseDepositAccountRequest
constructor
A new instance of CloseDepositAccountRequest.
- #to_json_api ⇒ Object
Constructor Details
#initialize(account_id, reason, fraud_reason = nil) ⇒ CloseDepositAccountRequest
Returns a new instance of CloseDepositAccountRequest.
14 15 16 17 18 |
# File 'lib/unit/models/account/deposit/close_deposit_account_request.rb', line 14 def initialize(account_id, reason, fraud_reason = nil) @account_id = account_id @reason = reason @fraud_reason = fraud_reason end |
Instance Attribute Details
#account_id ⇒ Object (readonly)
Returns the value of attribute account_id.
9 10 11 |
# File 'lib/unit/models/account/deposit/close_deposit_account_request.rb', line 9 def account_id @account_id end |
#fraud_reason ⇒ Object (readonly)
Returns the value of attribute fraud_reason.
9 10 11 |
# File 'lib/unit/models/account/deposit/close_deposit_account_request.rb', line 9 def fraud_reason @fraud_reason end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason.
9 10 11 |
# File 'lib/unit/models/account/deposit/close_deposit_account_request.rb', line 9 def reason @reason end |
Instance Method Details
#to_json_api ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/unit/models/account/deposit/close_deposit_account_request.rb', line 20 def to_json_api payload = { data: { type: "accountClose", attributes: { reason: reason, fraudReason: fraud_reason } } } payload[:data][:attributes].compact! payload.to_json end |