class AppStoreConnect::Schema::WebServiceEndpoint

Public Class Methods

new(options) click to toggle source
# File lib/app_store_connect/schema/web_service_endpoint.rb, line 6
def initialize(options)
  @options = options
end

Public Instance Methods

alias() click to toggle source
# File lib/app_store_connect/schema/web_service_endpoint.rb, line 10
def alias
  @options.fetch(:alias).to_sym
end
http_body_type() click to toggle source
# File lib/app_store_connect/schema/web_service_endpoint.rb, line 18
def http_body_type
  @options[:http_body_type]
end
http_method() click to toggle source
# File lib/app_store_connect/schema/web_service_endpoint.rb, line 14
def http_method
  @options[:http_method].to_sym
end
url() click to toggle source
# File lib/app_store_connect/schema/web_service_endpoint.rb, line 22
def url
  @options[:url]
end