Sha256: db5237ed58d57f805c6c320d54c48cef2fb770fc6629f51affa4fa5c4d268339
Contents?: true
Size: 467 Bytes
Versions: 75
Compression:
Stored size: 467 Bytes
Contents
module ProductionExtension def get_production(id, options={}) options.merge!(basic_auth: @auth, headers: @headers) response = self.class.get(base_api_endpoint("TXN/Productions/#{id}"), options) JSON.parse(response.body) end def get_production_details(id, options={}) options.merge!(basic_auth: @auth, headers: @headers) response = self.class.get(base_api_endpoint("TXN/Productions/#{id}"), options) JSON.parse(response.body) end end
Version data entries
75 entries across 75 versions & 1 rubygems