Class: SiteHostedPictureType

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

Overview

urn:ebay:apis:eBLBaseComponentsSiteHostedPictureType

Constant Summary collapse

@@schema_type =
"SiteHostedPictureType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["pictureURL", ["SOAP::SOAPAnyURI[]", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PictureURL")]],
  ["photoDisplay", ["PhotoDisplayCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PhotoDisplay")]],
  ["galleryType", ["GalleryTypeCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "GalleryType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pictureURL = [], photoDisplay = nil, galleryType = nil) ⇒ SiteHostedPictureType

Returns a new instance of SiteHostedPictureType.



2028
2029
2030
2031
2032
# File 'lib/v_paypal/default.rb', line 2028

def initialize(pictureURL = [], photoDisplay = nil, galleryType = nil)
  @pictureURL = pictureURL
  @photoDisplay = photoDisplay
  @galleryType = galleryType
end

Instance Attribute Details

#galleryTypeObject

Returns the value of attribute galleryType.



2026
2027
2028
# File 'lib/v_paypal/default.rb', line 2026

def galleryType
  @galleryType
end

#photoDisplayObject

Returns the value of attribute photoDisplay.



2025
2026
2027
# File 'lib/v_paypal/default.rb', line 2025

def photoDisplay
  @photoDisplay
end

#pictureURLObject

Returns the value of attribute pictureURL.



2024
2025
2026
# File 'lib/v_paypal/default.rb', line 2024

def pictureURL
  @pictureURL
end