class Credigy::Authorized
Attributes
Public Class Methods
new(authorization_token)
click to toggle source
# File lib/credigy/authorized.rb, line 7 def initialize(authorization_token) @authorization_token = authorization_token end
Public Instance Methods
soap_header()
click to toggle source
# File lib/credigy/authorized.rb, line 11 def soap_header { 'cred:AuthenticationToken' => { 'cred:Token' => authorization_token } } end