Class: RBook::TitlePage::SearchResults

Inherits:
Object
  • Object
show all
Defined in:
lib/rbook/titlepage/titlepage_utils.rb

Overview

urn:TitleQuerySearchResults

Constant Summary collapse

@@schema_type =
"SearchResults"
@@schema_ns =
"urn:TitleQuery"
@@schema_element =
[["iSBN", ["SOAP::SOAPString", XSD::QName.new(nil, "ISBN")]], ["eAN", ["SOAP::SOAPString", XSD::QName.new(nil, "EAN")]], ["product", ["Product", XSD::QName.new(nil, "Product")]]]

Instance Method Summary collapse

Constructor Details

#initialize(iSBN = nil, eAN = nil, product = nil) ⇒ SearchResults

Returns a new instance of SearchResults.



372
373
374
375
376
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 372

def initialize(iSBN = nil, eAN = nil, product = nil)
  @iSBN = iSBN
  @eAN = eAN
  @product = product
end

Instance Method Details

#EANObject



356
357
358
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 356

def EAN
  @eAN
end

#EAN=(value) ⇒ Object



360
361
362
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 360

def EAN=(value)
  @eAN = value
end

#ISBNObject



348
349
350
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 348

def ISBN
  @iSBN
end

#ISBN=(value) ⇒ Object



352
353
354
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 352

def ISBN=(value)
  @iSBN = value
end

#ProductObject



364
365
366
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 364

def Product
  @product
end

#Product=(value) ⇒ Object



368
369
370
# File 'lib/rbook/titlepage/titlepage_utils.rb', line 368

def Product=(value)
  @product = value
end