Sha256: 68ead140b21b3cb2a26db77918e14102dc1ff8454595efe143d9e915b80ef4f4

Contents?: true

Size: 356 Bytes

Versions: 1

Compression:

Stored size: 356 Bytes

Contents

module PCPServerSDK
  class CommunicatorConfiguration
    attr_reader :api_key, :api_secret, :host
  
    # The constructor
    # @param [String] api_key
    # @param [String] api_secret
    # @param [String] host
    def initialize(api_key, api_secret, host)
      @api_key = api_key
      @api_secret = api_secret
      @host = host
    end
  end  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pcp-server-ruby-sdk-1.0.0 lib/PCP-server-Ruby-SDK/communicator_configuration.rb