Sha256: a4435903a23dd3f50fa046b5b6ecc0f88b1473b9c0fdbbb5d2da66820124de5f
Contents?: true
Size: 488 Bytes
Versions: 16
Compression:
Stored size: 488 Bytes
Contents
module Ecoportal module API class V1 attr_reader :client def initialize(api_key, host: "live.ecoportal.com") @client = Common::Client.new( api_key: api_key, host: host, version: "v1" ) end def people V1::People.new(client) end def person_schemas V1::PersonSchemas.new(client) end end end end require 'ecoportal/api/v1/people' require 'ecoportal/api/v1/person_schemas'
Version data entries
16 entries across 16 versions & 1 rubygems