Class: PlatformAPI::OrganizationPreferences

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Deprecated: Tracks an organization's preferences

Instance Method Summary collapse

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

Parameters:

  • organization_preferences_identity:


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

Parameters:

  • organization_preferences_identity:
  • body:

    the object to pass as the request payload



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