Sha256: 37dbf65cc1fe7bc816017102348de2aeee83bc286984b2f25ee51eec6743910a

Contents?: true

Size: 325 Bytes

Versions: 4

Compression:

Stored size: 325 Bytes

Contents

# frozen_string_literal: true

module AppStoreConnect
  class WebServiceEndpoint
    def initialize(**options)
      @options = options
    end

    def http_method
      @options[:http_method].to_sym
    end

    def http_body_type
      @options[:http_body_type]
    end

    def url
      @options[:url]
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
app_store_connect-0.10.0 lib/app_store_connect/web_service_endpoint.rb
app_store_connect-0.9.0 lib/app_store_connect/web_service_endpoint.rb
app_store_connect-0.8.0 lib/app_store_connect/web_service_endpoint.rb
app_store_connect-0.7.0 lib/app_store_connect/web_service_endpoint.rb