Sha256: 7e0410a8339ed747fff9226b8215b29b276ac8ed1926598fc339a963fb10657b
Contents?: true
Size: 1.23 KB
Versions: 5
Compression:
Stored size: 1.23 KB
Contents
# MoneyKit::AccountImportData ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account_id** | **String** | Your internal ID for this account. Must be unique within the imported account batch. | | | **name** | **String** | The account name. This value may change if synced with a data provider later. | | | **type** | **String** | The account type. It can have any initial value but it will be converted to a MoneyKit account type (see <a href=/pages/account_types>Account Types</a>) upon output. The account may change types if it is synced with a data provider later. | | | **mask** | **String** | The last four characters (usually digits) of the account number. This field can be omitted, but you are strongly encouraged to supply it because it is the most important factor for properly connecting new data to this account if it is synced with a data provider later. | [optional] | | **balances** | [**AccountBalances**](AccountBalances.md) | | | ## Example ```ruby require 'moneykit' instance = MoneyKit::AccountImportData.new( account_id: 74583934, name: Premier Checking, type: depository.checking, mask: 3748, balances: null ) ```
Version data entries
5 entries across 5 versions & 1 rubygems