Sha256: e8a3af96c68c86178df88ab56c59f826c6d000dcc6562e7b8f8af7dd4e664400

Contents?: true

Size: 1.42 KB

Versions: 3

Compression:

Stored size: 1.42 KB

Contents

# MoneyKit::LinkResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **link_id** | **String** | The unique ID for this link. |  |
| **institution_id** | **String** | The unique ID for the institution this link is connected to. |  |
| **institution_name** | **String** | The institution name this link is connected to. |  |
| **institution_avatar** | **String** | An avatar image for the link's institution. |  |
| **state** | [**LinkState**](LinkState.md) |  |  |
| **error_code** | [**LinkError**](LinkError.md) |  | [optional] |
| **last_synced_at** | **Time** | An ISO-8601 timestamp indicating the last time that the account was updated. | [optional] |
| **tags** | **Array<String>** |  | [optional] |
| **products** | [**LinkProducts**](LinkProducts.md) |  |  |
| **available_products** | [**Array<Product>**](Product.md) |  |  |
| **provider** | [**Provider**](Provider.md) |  |  |
| **webhook** | **String** | The webhook url assigned to this link. | [optional] |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::LinkResponse.new(
  link_id: mk_eqkWN34UEoa2NxyALG8pcV,
  institution_id: chase,
  institution_name: Chase,
  institution_avatar: https://example.com/avatar.png,
  state: null,
  error_code: null,
  last_synced_at: 2023-02-16T09:14:11,
  tags: null,
  products: null,
  available_products: null,
  provider: null,
  webhook: https://example.com/webhook
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
moneykit-0.1.10 docs/LinkResponse.md
moneykit-0.1.9 docs/LinkResponse.md
moneykit-0.1.6 docs/LinkResponse.md