Class: PlatformAPI::OrganizationPreferences

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

Overview

Tracks an organization's preferences

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ OrganizationPreferences

Returns a new instance of OrganizationPreferences.



1755
1756
1757
# File 'lib/platform-api/client.rb', line 1755

def initialize(client)
  @client = client
end

Instance Method Details

#list(organization_preferences_identity) ⇒ Object

Retrieve Organization Preferences

Parameters:

  • organization_preferences_identity:


1762
1763
1764
# File 'lib/platform-api/client.rb', line 1762

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



1770
1771
1772
# File 'lib/platform-api/client.rb', line 1770

def update(organization_preferences_identity, body = {})
  @client.organization_preferences.update(organization_preferences_identity, body)
end