Sha256: cdec36a071ac7eba5f0248cd57417ead96a059d80176024773e26a8f183a4325

Contents?: true

Size: 493 Bytes

Versions: 5

Compression:

Stored size: 493 Bytes

Contents

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

5 entries across 5 versions & 1 rubygems

Version Path
fizzy-api-0.1.4 lib/fizzy/api/endpoints/render_overview.rb
fizzy-api-0.1.3 lib/fizzy/api/endpoints/render_overview.rb
fizzy-api-0.1.2 lib/fizzy/api/endpoints/render_overview.rb
fizzy-api-0.1.1 lib/fizzy/api/endpoints/render_overview.rb
fizzy-api-0.1.0 lib/fizzy/api/endpoints/render_overview.rb