Class: APICredentialsType
- Inherits:
-
Object
- Object
- APICredentialsType
- Defined in:
- lib/paypal-business/default.rb
Overview
urn:ebay:apis:eBLBaseComponentsAPICredentialsType
Constant Summary collapse
- @@schema_type =
"APICredentialsType"
- @@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
- @@schema_element =
[ ["username", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Username")]], ["password", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Password")]], ["signature", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Signature")]], ["certificate", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Certificate")]], ["type", ["APIAuthenticationType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Type")]] ]
Instance Attribute Summary collapse
-
#certificate ⇒ Object
Returns the value of attribute certificate.
-
#password ⇒ Object
Returns the value of attribute password.
-
#signature ⇒ Object
Returns the value of attribute signature.
-
#type ⇒ Object
Returns the value of attribute type.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(username = nil, password = nil, signature = nil, certificate = nil, type = nil) ⇒ APICredentialsType
constructor
A new instance of APICredentialsType.
Constructor Details
#initialize(username = nil, password = nil, signature = nil, certificate = nil, type = nil) ⇒ APICredentialsType
Returns a new instance of APICredentialsType.
4304 4305 4306 4307 4308 4309 4310 |
# File 'lib/paypal-business/default.rb', line 4304 def initialize(username = nil, password = nil, signature = nil, certificate = nil, type = nil) @username = username @password = password @signature = signature @certificate = certificate @type = type end |
Instance Attribute Details
#certificate ⇒ Object
Returns the value of attribute certificate.
4301 4302 4303 |
# File 'lib/paypal-business/default.rb', line 4301 def certificate @certificate end |
#password ⇒ Object
Returns the value of attribute password.
4299 4300 4301 |
# File 'lib/paypal-business/default.rb', line 4299 def password @password end |
#signature ⇒ Object
Returns the value of attribute signature.
4300 4301 4302 |
# File 'lib/paypal-business/default.rb', line 4300 def signature @signature end |
#type ⇒ Object
Returns the value of attribute type.
4302 4303 4304 |
# File 'lib/paypal-business/default.rb', line 4302 def type @type end |
#username ⇒ Object
Returns the value of attribute username.
4298 4299 4300 |
# File 'lib/paypal-business/default.rb', line 4298 def username @username end |