Class: PlatformAPI::OrganizationPreferences
- Inherits:
-
Object
- Object
- PlatformAPI::OrganizationPreferences
- Defined in:
- lib/platform-api/client.rb
Overview
Deprecated: Tracks an organization's preferences
Instance Method Summary collapse
-
#initialize(client) ⇒ OrganizationPreferences
constructor
A new instance of OrganizationPreferences.
-
#list(organization_preferences_identity) ⇒ Object
Retrieve Organization Preferences.
-
#update(organization_preferences_identity, body = {}) ⇒ Object
Update Organization Preferences.
Constructor Details
#initialize(client) ⇒ OrganizationPreferences
Returns a new instance of OrganizationPreferences.
2109 2110 2111 |
# File 'lib/platform-api/client.rb', line 2109 def initialize(client) @client = client end |
Instance Method Details
#list(organization_preferences_identity) ⇒ Object
Retrieve Organization Preferences
2116 2117 2118 |
# File 'lib/platform-api/client.rb', line 2116 def list(organization_preferences_identity) @client.organization_preferences.list(organization_preferences_identity) end |
#update(organization_preferences_identity, body = {}) ⇒ Object
Update Organization Preferences
2124 2125 2126 |
# File 'lib/platform-api/client.rb', line 2124 def update(organization_preferences_identity, body = {}) @client.organization_preferences.update(organization_preferences_identity, body) end |