|
| 1 | +# MxPlatformRuby::Account |
| 2 | + |
| 3 | +## Properties |
| 4 | + |
| 5 | +| Name | Type | Description | Notes | |
| 6 | +| ---- | ---- | ----------- | ----- | |
| 7 | +| **account_number** | **String** | | [optional] | |
| 8 | +| **apr** | **Float** | | [optional] | |
| 9 | +| **apy** | **Float** | | [optional] | |
| 10 | +| **available_balance** | **Float** | | [optional] | |
| 11 | +| **available_credit** | **Float** | | [optional] | |
| 12 | +| **balance** | **Float** | | [optional] | |
| 13 | +| **cash_balance** | **Float** | | [optional] | |
| 14 | +| **cash_surrender_value** | **Float** | | [optional] | |
| 15 | +| **created_at** | **String** | | [optional] | |
| 16 | +| **credit_limit** | **Float** | | [optional] | |
| 17 | +| **currency_code** | **String** | | [optional] | |
| 18 | +| **day_payment_is_due** | **Integer** | | [optional] | |
| 19 | +| **death_benefit** | **Integer** | | [optional] | |
| 20 | +| **guid** | **String** | | [optional] | |
| 21 | +| **holdings_value** | **Float** | | [optional] | |
| 22 | +| **id** | **String** | | [optional] | |
| 23 | +| **institution_code** | **String** | | [optional] | |
| 24 | +| **insured_name** | **String** | | [optional] | |
| 25 | +| **interest_rate** | **Float** | | [optional] | |
| 26 | +| **is_closed** | **Boolean** | | [optional] | |
| 27 | +| **is_hidden** | **Boolean** | | [optional] | |
| 28 | +| **last_payment** | **Float** | | [optional] | |
| 29 | +| **last_payment_at** | **String** | | [optional] | |
| 30 | +| **loan_amount** | **Float** | | [optional] | |
| 31 | +| **matures_on** | **String** | | [optional] | |
| 32 | +| **member_guid** | **String** | | [optional] | |
| 33 | +| **minimum_balance** | **Float** | | [optional] | |
| 34 | +| **minimum_payment** | **Float** | | [optional] | |
| 35 | +| **name** | **String** | | [optional] | |
| 36 | +| **original_balance** | **Float** | | [optional] | |
| 37 | +| **pay_out_amount** | **Float** | | [optional] | |
| 38 | +| **payment_due_at** | **String** | | [optional] | |
| 39 | +| **payoff_balance** | **Float** | | [optional] | |
| 40 | +| **premium_amount** | **Float** | | [optional] | |
| 41 | +| **started_on** | **String** | | [optional] | |
| 42 | +| **subtype** | **String** | | [optional] | |
| 43 | +| **total_account_value** | **Float** | | [optional] | |
| 44 | +| **type** | **String** | | [optional] | |
| 45 | +| **updated_at** | **String** | | [optional] | |
| 46 | +| **user_guid** | **String** | | [optional] | |
| 47 | + |
| 48 | +## Example |
| 49 | + |
| 50 | +```ruby |
| 51 | +require 'mx-platform-ruby' |
| 52 | + |
| 53 | +instance = MxPlatformRuby::Account.new( |
| 54 | + account_number: 5366, |
| 55 | + apr: 1.0, |
| 56 | + apy: 1.0, |
| 57 | + available_balance: 1000.0, |
| 58 | + available_credit: 1000.0, |
| 59 | + balance: 1000.0, |
| 60 | + cash_balance: 1000.0, |
| 61 | + cash_surrender_value: 1000.0, |
| 62 | + created_at: 2016-10-13T17:57:37.000Z, |
| 63 | + credit_limit: 100.0, |
| 64 | + currency_code: USD, |
| 65 | + day_payment_is_due: 20, |
| 66 | + death_benefit: 1000, |
| 67 | + guid: ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1, |
| 68 | + holdings_value: 1000.0, |
| 69 | + id: 1040434698, |
| 70 | + institution_code: chase, |
| 71 | + insured_name: Frodo Baggins, |
| 72 | + interest_rate: 1.0, |
| 73 | + is_closed: false, |
| 74 | + is_hidden: false, |
| 75 | + last_payment: 100.0, |
| 76 | + last_payment_at: 2015-10-13T17:57:37.000Z, |
| 77 | + loan_amount: 1000.0, |
| 78 | + matures_on: 2015-10-13T17:57:37.000Z, |
| 79 | + member_guid: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b, |
| 80 | + minimum_balance: 100.0, |
| 81 | + minimum_payment: 10.0, |
| 82 | + name: Test account 2, |
| 83 | + original_balance: 10.0, |
| 84 | + pay_out_amount: 10.0, |
| 85 | + payment_due_at: 2015-10-13T17:57:37.000Z, |
| 86 | + payoff_balance: 10.0, |
| 87 | + premium_amount: 1.0, |
| 88 | + started_on: 2015-10-13T17:57:37.000Z, |
| 89 | + subtype: NONE, |
| 90 | + total_account_value: 1.0, |
| 91 | + type: SAVINGS, |
| 92 | + updated_at: 2016-10-13T18:08:00.000Z, |
| 93 | + user_guid: USR-fa7537f3-48aa-a683-a02a-b18940482f54 |
| 94 | +) |
| 95 | +``` |
| 96 | + |
0 commit comments