Sha256: ee08bc5d4a0eb77ceabe6ac2e01e586f918bc4887a685d2f33c4a6095d743ed0
Contents?: true
Size: 1.04 KB
Versions: 9
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 customer-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
9 entries across 9 versions & 1 rubygems