Class: SiteHostedPictureType

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal-business/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.



2208
2209
2210
2211
2212
# File 'lib/paypal-business/default.rb', line 2208

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

Instance Attribute Details

#galleryTypeObject

Returns the value of attribute galleryType.



2206
2207
2208
# File 'lib/paypal-business/default.rb', line 2206

def galleryType
  @galleryType
end

#photoDisplayObject

Returns the value of attribute photoDisplay.



2205
2206
2207
# File 'lib/paypal-business/default.rb', line 2205

def photoDisplay
  @photoDisplay
end

#pictureURLObject

Returns the value of attribute pictureURL.



2204
2205
2206
# File 'lib/paypal-business/default.rb', line 2204

def pictureURL
  @pictureURL
end