Sha256: 7a1241930d82e5daa7080087f8275d8df35f5fb4a97eb02608a21fdacfb3fbb2
Contents?: true
Size: 470 Bytes
Versions: 54
Compression:
Stored size: 470 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
54 entries across 54 versions & 1 rubygems