class GlobalSign::UrlVerification::Response
Public Instance Methods
params()
click to toggle source
# File lib/global_sign/url_verification/response.rb, line 14 def params @params ||= { order_id: @xml.xpath(XPath::ORDER_ID).text, meta_tag: @xml.xpath(XPath::META_TAG).text, verification_url_list: verification_url_list, } end
response_header()
click to toggle source
# File lib/global_sign/url_verification/response.rb, line 10 def response_header :OrderResponseHeader end
Private Instance Methods
verification_url_list()
click to toggle source
# File lib/global_sign/url_verification/response.rb, line 24 def verification_url_list @xml.xpath(XPath::VERIFICATION_URL_LIST).children.map(&:text) end