Class: FedexWebServices::Soap::Ship::WebAuthenticationCredential

Inherits:
Object
  • Object
show all
Defined in:
lib/fedex_web_services/soap/ShipServiceDefinitions.rb

Overview

http://fedex.com/ws/ship/v12WebAuthenticationCredential

key - SOAP::SOAPString
password - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key = nil, password = nil) ⇒ WebAuthenticationCredential

Returns a new instance of WebAuthenticationCredential.



3665
3666
3667
3668
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 3665

def initialize(key = nil, password = nil)
  @key = key
  @password = password
end

Instance Attribute Details

#keyObject

Returns the value of attribute key.



3662
3663
3664
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 3662

def key
  @key
end

#passwordObject

Returns the value of attribute password.



3663
3664
3665
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 3663

def password
  @password
end