Class: Unit::Account::Credit::PatchAccountRequest
- Inherits:
-
Object
- Object
- Unit::Account::Credit::PatchAccountRequest
- Defined in:
- lib/unit/models/account/credit/patch_account_request.rb
Instance Attribute Summary collapse
-
#account_id ⇒ Object
readonly
Returns the value of attribute account_id.
-
#credit_limit ⇒ Object
readonly
Returns the value of attribute credit_limit.
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
Instance Method Summary collapse
-
#initialize(account_id, tags = nil, credit_limit = nil) ⇒ PatchAccountRequest
constructor
A new instance of PatchAccountRequest.
- #to_json_api ⇒ Object
Constructor Details
#initialize(account_id, tags = nil, credit_limit = nil) ⇒ PatchAccountRequest
Returns a new instance of PatchAccountRequest.
14 15 16 17 18 |
# File 'lib/unit/models/account/credit/patch_account_request.rb', line 14 def initialize(account_id, = nil, credit_limit = nil) @account_id = account_id @tags = @credit_limit = credit_limit end |
Instance Attribute Details
#account_id ⇒ Object (readonly)
Returns the value of attribute account_id.
9 10 11 |
# File 'lib/unit/models/account/credit/patch_account_request.rb', line 9 def account_id @account_id end |
#credit_limit ⇒ Object (readonly)
Returns the value of attribute credit_limit.
9 10 11 |
# File 'lib/unit/models/account/credit/patch_account_request.rb', line 9 def credit_limit @credit_limit end |
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
9 10 11 |
# File 'lib/unit/models/account/credit/patch_account_request.rb', line 9 def @tags 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/credit/patch_account_request.rb', line 20 def to_json_api payload = { data: { type: "creditAccount", attributes: { tags: , creditLimit: credit_limit } } } payload[:data][:attributes].compact! payload.to_json end |