Sha256: 586ec61ae4e6222f827aa985ffa73afdf28a877a730a8f08b12b566c983b6554
Contents?: true
Size: 436 Bytes
Versions: 9
Compression:
Stored size: 436 Bytes
Contents
# frozen_string_literal: true module AppStoreDevApi class Schema class WebServiceEndpoint def initialize(options) @options = options end def alias @options.fetch(:alias).to_sym 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 end
Version data entries
9 entries across 9 versions & 1 rubygems