Class: UserIdPasswordType

Inherits:
Object
  • Object
show all
Defined in:
lib/v_paypal/default.rb

Overview

urn:ebay:apis:eBLBaseComponentsUserIdPasswordType

Constant Summary collapse

@@schema_type =
"UserIdPasswordType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["appId", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AppId")]],
  ["devId", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DevId")]],
  ["authCert", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AuthCert")]],
  ["username", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Username")]],
  ["password", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Password")]],
  ["subject", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Subject")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(appId = nil, devId = nil, authCert = nil, username = nil, password = nil, subject = nil) ⇒ UserIdPasswordType

Returns a new instance of UserIdPasswordType.



3904
3905
3906
3907
3908
3909
3910
3911
# File 'lib/v_paypal/default.rb', line 3904

def initialize(appId = nil, devId = nil, authCert = nil, username = nil, password = nil, subject = nil)
  @appId = appId
  @devId = devId
  @authCert = authCert
  @username = username
  @password = password
  @subject = subject
end

Instance Attribute Details

#appIdObject

Returns the value of attribute appId.



3897
3898
3899
# File 'lib/v_paypal/default.rb', line 3897

def appId
  @appId
end

#authCertObject

Returns the value of attribute authCert.



3899
3900
3901
# File 'lib/v_paypal/default.rb', line 3899

def authCert
  @authCert
end

#devIdObject

Returns the value of attribute devId.



3898
3899
3900
# File 'lib/v_paypal/default.rb', line 3898

def devId
  @devId
end

#passwordObject

Returns the value of attribute password.



3901
3902
3903
# File 'lib/v_paypal/default.rb', line 3901

def password
  @password
end

#subjectObject

Returns the value of attribute subject.



3902
3903
3904
# File 'lib/v_paypal/default.rb', line 3902

def subject
  @subject
end

#usernameObject

Returns the value of attribute username.



3900
3901
3902
# File 'lib/v_paypal/default.rb', line 3900

def username
  @username
end