lib/smartsheet/endpoints/contacts/contacts.rb in smartsheet-1.0.0 vs lib/smartsheet/endpoints/contacts/contacts.rb in smartsheet-1.1.0
- old
+ new
@@ -1,31 +1,31 @@
-module Smartsheet
- # Contacts Endpoints
- # @see https://smartsheet-platform.github.io/api-docs/?ruby#contacts API Contacts Docs
- class Contacts
- attr_reader :client
- private :client
-
- def initialize(client)
- @client = client
- end
-
- def get(contact_id:, params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['contacts', :contact_id])
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params,
- contact_id: contact_id
- )
- client.make_request(endpoint_spec, request_spec)
- end
-
- def list(params: {}, header_overrides: {})
- endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['contacts'])
- request_spec = Smartsheet::API::RequestSpec.new(
- header_overrides: header_overrides,
- params: params
- )
- client.make_request(endpoint_spec, request_spec)
- end
- end
+module Smartsheet
+ # Contacts Endpoints
+ # @see https://smartsheet-platform.github.io/api-docs/?ruby#contacts API Contacts Docs
+ class Contacts
+ attr_reader :client
+ private :client
+
+ def initialize(client)
+ @client = client
+ end
+
+ def get(contact_id:, params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['contacts', :contact_id])
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params,
+ contact_id: contact_id
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+
+ def list(params: {}, header_overrides: {})
+ endpoint_spec = Smartsheet::API::EndpointSpec.new(:get, ['contacts'])
+ request_spec = Smartsheet::API::RequestSpec.new(
+ header_overrides: header_overrides,
+ params: params
+ )
+ client.make_request(endpoint_spec, request_spec)
+ end
+ end
end
\ No newline at end of file