lib/authlete/response/introspection-response.rb in authlete-0.3.5 vs lib/authlete/response/introspection-response.rb in authlete-0.3.6

- old
+ new

@@ -18,12 +18,11 @@ module Authlete module Response # == Authlete::Response::IntrospectionResponse class # # A class that represents a response from Authlete's - # {/auth/introspection}[https://www.authlete.com/authlete_web_apis_introspection.html#auth_introspection] - # API. + # /api/auth/introspection API. # class IntrospectionResponse < Authlete::Response::BaseResponse include Authlete::Utility # The next action which the caller of the API should take next. @@ -56,12 +55,11 @@ # The content of the error response that the service implementation # should return to the client application. attr_accessor :response_content - # The constructor which takes a hash that represents a JSON response from - # {/auth/introspection}[https://www.authlete.com/authlete_web_apis_introspection.html#auth_introspection] - # API. + # The constructor which takes a hash that represents a JSON response + # from /api/auth/introspection API. def initialize(hash = {}) super(hash) @action = extract_value(hash, :action) @client_id = extract_value(hash, :clientId)