# Plaid::AccountIdentity ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account_id** | **String** | Plaid’s unique identifier for the account. This value will not change unless Plaid can't reconcile the account with the data returned by the financial institution. This may occur, for example, when the name of the account changes. If this happens a new `account_id` will be assigned to the account. The `account_id` can also change if the `access_token` is deleted and the same credentials that were used to generate that `access_token` are used to generate a new `access_token` on a later date. In that case, the new `account_id` will be different from the old `account_id`. Like all Plaid identifiers, the `account_id` is case sensitive. | | | **balances** | [**AccountBalance**](AccountBalance.md) | | | | **mask** | **String** | The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user. | [optional] | | **name** | **String** | The name of the account, either assigned by the user or by the financial institution itself | | | **official_name** | **String** | The official name of the account as given by the financial institution | [optional] | | **type** | [**AccountType**](AccountType.md) | | | | **subtype** | [**AccountSubtype**](AccountSubtype.md) | | | | **verification_status** | **String** | The current verification status of an Auth Item initiated through Automated or Manual micro-deposits. Returned for Auth Items only. `pending_automatic_verification`: The Item is pending automatic verification `pending_manual_verification`: The Item is pending manual micro-deposit verification. Items remain in this state until the user successfully verifies the two amounts. `automatically_verified`: The Item has successfully been automatically verified `manually_verified`: The Item has successfully been manually verified `verification_expired`: Plaid was unable to automatically verify the deposit within 7 calendar days and will no longer attempt to validate the Item. Users may retry by submitting their information again through Link. `verification_failed`: The Item failed manual micro-deposit verification because the user exhausted all 3 verification attempts. Users may retry by submitting their information again through Link. | [optional] | | **owners** | [**Array<Owner>**](Owner.md) | Data returned by the financial institution about the account owner or owners. Only returned by Identity or Assets endpoints. Multiple owners on a single account will be represented in the same `owner` object, not in multiple owner objects within the array. | | ## Example ```ruby require 'plaid' instance = Plaid::AccountIdentity.new( account_id: null, balances: null, mask: null, name: null, official_name: null, type: null, subtype: null, verification_status: null, owners: null ) ```