Sha256: 660028d4599c913129fc6695b8c3cacfa206746e149e11f1f6b550007a75a90c

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

# MoneyKit::Institution

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **institution_id** | **String** | MoneyKit's unique ID for this institution. |  |
| **institution_id_aliases** | **Array<String>** |  |  |
| **name** | **String** | The name of the institution. |  |
| **country** | [**Country**](Country.md) |  |  |
| **domain** | **String** | The domain of the institution's user-facing website. | [optional] |
| **color** | **String** | The primary color of this institution, represented as hexcode. |  |
| **color_dark** | **String** | The dark-mode primary color of this institution, represented as hexcode. | [optional] |
| **is_featured** | **Boolean** | True for institutions that should be visually promoted to the end-user. |  |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::Institution.new(
  institution_id: chase,
  institution_id_aliases: null,
  name: Chase,
  country: null,
  domain: chase.com,
  color: #0A89FF,
  color_dark: #0A89FF,
  is_featured: null
)
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
moneykit-0.1.10 docs/Institution.md
moneykit-0.1.9 docs/Institution.md