Class: VATDetailsType

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal-business/default.rb

Overview

urn:ebay:apis:eBLBaseComponentsVATDetailsType

Constant Summary collapse

@@schema_type =
"VATDetailsType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["businessSeller", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BusinessSeller")]],
  ["restrictedToBusiness", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "RestrictedToBusiness")]],
  ["vATPercent", ["SOAP::SOAPFloat", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "VATPercent")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(businessSeller = nil, restrictedToBusiness = nil, vATPercent = nil) ⇒ VATDetailsType

Returns a new instance of VATDetailsType.



2918
2919
2920
2921
2922
# File 'lib/paypal-business/default.rb', line 2918

def initialize(businessSeller = nil, restrictedToBusiness = nil, vATPercent = nil)
  @businessSeller = businessSeller
  @restrictedToBusiness = restrictedToBusiness
  @vATPercent = vATPercent
end

Instance Attribute Details

#businessSellerObject

Returns the value of attribute businessSeller.



2914
2915
2916
# File 'lib/paypal-business/default.rb', line 2914

def businessSeller
  @businessSeller
end

#restrictedToBusinessObject

Returns the value of attribute restrictedToBusiness.



2915
2916
2917
# File 'lib/paypal-business/default.rb', line 2915

def restrictedToBusiness
  @restrictedToBusiness
end

#vATPercentObject

Returns the value of attribute vATPercent.



2916
2917
2918
# File 'lib/paypal-business/default.rb', line 2916

def vATPercent
  @vATPercent
end