Sha256: e83f4abe6e6e1ba5dc49b0de266ba9b5dc2411fbcbee1600f44d0fe1848d6263

Contents?: true

Size: 524 Bytes

Versions: 1

Compression:

Stored size: 524 Bytes

Contents

# frozen_string_literal: true

module Fizzy
  module Api
    module Endpoints
      class RenderOverview < Endpoint
        string :dossier_id
        string :protocol_subscription_id

        def execute
          response = Api.basic_auth_session.get("/dossier/#{dossier_id}"\
                                                "/protocol_subscriptions/#{protocol_subscription_id}" \
                                                '/render.json')
          process_response(response)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fizzy-api-0.1.5 lib/fizzy/api/endpoints/render_overview.rb