Class: Unit::Account::Deposit::PatchDepositAccountRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/unit/models/account/deposit/patch_deposit_account_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account_id, tags = nil, deposit_product = nil) ⇒ PatchDepositAccountRequest

Returns a new instance of PatchDepositAccountRequest.

Parameters:

  • account_id (String)
  • tags (Hash) (defaults to: nil)
    • optional

  • deposit_product (String) (defaults to: nil)
    • optional



14
15
16
17
18
# File 'lib/unit/models/account/deposit/patch_deposit_account_request.rb', line 14

def initialize(, tags = nil, deposit_product = nil)
  @account_id = 
  @tags = tags
  @deposit_product = deposit_product
end

Instance Attribute Details

#account_idObject (readonly)

Returns the value of attribute account_id.



9
10
11
# File 'lib/unit/models/account/deposit/patch_deposit_account_request.rb', line 9

def 
  @account_id
end

#deposit_productObject (readonly)

Returns the value of attribute deposit_product.



9
10
11
# File 'lib/unit/models/account/deposit/patch_deposit_account_request.rb', line 9

def deposit_product
  @deposit_product
end

#tagsObject (readonly)

Returns the value of attribute tags.



9
10
11
# File 'lib/unit/models/account/deposit/patch_deposit_account_request.rb', line 9

def tags
  @tags
end

Instance Method Details

#to_json_apiObject



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/unit/models/account/deposit/patch_deposit_account_request.rb', line 20

def to_json_api
  payload = {
    data: {
      type: "depositAccount",
      attributes: {
        tags: tags,
        depositProduct: deposit_product
      }
    }
  }
  payload[:data][:attributes].compact!
  payload.to_json
end