Inherits from Shopping_AbstractResponseType : NSObject
Declared in Shopping_FindProductsResponseType.h
Shopping_FindProductsResponseType.m

Overview

Returns stock product information in eBay catalogs, such as
information about a particular DVD or camera. Optionally,
also returns items that match the product.

@ingroup ShoppingInterface

Tasks

  •   approximatePages

    The total number of pages that can be returned, given the same
    query and filters in the request. As FindProducts only returns
    up to 2000 products, the maximum possible value is theoretically
    2000 (if you were to set MaxEntries to 1 in the request).

    property
  •   moreResults

    If true, more pages of results are available.
    That is, PageNumber is less than ApproximatePages.

    property
  •   domainHistogram

    A histogram that lists the number of matching products found and the domains
    in which they were found. A domain describes a set of
    categories that share certain common characteristics (as determined by eBay).
    Each domain has its own name and ID. Only returned when you specify
    DomainHistogram in IncludeSelector.

    property
  •   itemArray

    A list of active items that were listed with the requested
    product.




    Note:
    ItemArray is returned only when you use ProductID in the search request
    (not QueryKeywords) and you set IncludeSelector to Details or Items.
    Returned only if eBay has currently matching items.


    property
  •   pageNumber

    The number of the page of data returned. If many products
    are found and multiple pages of results are available, use
    this in combination with ApproximatePages and MoreResults
    to decide which page to retrieve next. As FindProducts only
    returns up to 2000 products, the maximum possible value is
    theoretically 2000 (if you were to set MaxEntries to 1 in the
    request).

    property
  •   product

    An eBay catalog product. This contains stock information about a particular
    DVD, camera, set of golf clubs, or other product. When you use QueryKeywords
    in the request, FindProducts returns a maximum of 20 products per page. When
    you use ProductID in the request, FindProducts usually only returns 1 product
    by default. (If more than one product matches the same ProductID, FindProducts
    will return all of those products. As of the time of this writing, we expect
    this to be a rare case.)

    property
  •   totalProducts

    The total number of matching products found. (If more than 2000 products are
    found, the call fails with an error.)

    property
  •   duplicateItems

    Indicates whether there are duplicated items not returned by this
    response when HideDuplicateItems is true in the request.

    property

Properties

approximatePages

The total number of pages that can be returned, given the same
query and filters in the request. As FindProducts only returns
up to 2000 products, the maximum possible value is theoretically
2000 (if you were to set MaxEntries to 1 in the request).

@property (nonatomic, retain) NSNumber *approximatePages

Discussion

The total number of pages that can be returned, given the same
query and filters in the request. As FindProducts only returns
up to 2000 products, the maximum possible value is theoretically
2000 (if you were to set MaxEntries to 1 in the request).

type : NSNumber, wrapper for primitive int

Declared In

Shopping_FindProductsResponseType.h

domainHistogram

A histogram that lists the number of matching products found and the domains
in which they were found. A domain describes a set of
categories that share certain common characteristics (as determined by eBay).
Each domain has its own name and ID. Only returned when you specify
DomainHistogram in IncludeSelector.

@property (nonatomic, retain) Shopping_DomainHistogramType *domainHistogram

Discussion

A histogram that lists the number of matching products found and the domains
in which they were found. A domain describes a set of
categories that share certain common characteristics (as determined by eBay).
Each domain has its own name and ID. Only returned when you specify
DomainHistogram in IncludeSelector.

type : class Shopping_DomainHistogramType

Declared In

Shopping_FindProductsResponseType.h

duplicateItems

Indicates whether there are duplicated items not returned by this
response when HideDuplicateItems is true in the request.

@property (nonatomic, retain) NSNumber *duplicateItems

Discussion

Indicates whether there are duplicated items not returned by this
response when HideDuplicateItems is true in the request.

type : NSNumber, wrapper for primitive bool

Declared In

Shopping_FindProductsResponseType.h

itemArray

A list of active items that were listed with the requested
product.




Note:
ItemArray is returned only when you use ProductID in the search request
(not QueryKeywords) and you set IncludeSelector to Details or Items.
Returned only if eBay has currently matching items.


@property (nonatomic, retain) Shopping_SimpleItemArrayType *itemArray

Discussion

A list of active items that were listed with the requested
product.




Note:
ItemArray is returned only when you use ProductID in the search request
(not QueryKeywords) and you set IncludeSelector to Details or Items.
Returned only if eBay has currently matching items.


type : class Shopping_SimpleItemArrayType

Declared In

Shopping_FindProductsResponseType.h

moreResults

If true, more pages of results are available.
That is, PageNumber is less than ApproximatePages.

@property (nonatomic, retain) NSNumber *moreResults

Discussion

If true, more pages of results are available.
That is, PageNumber is less than ApproximatePages.

type : NSNumber, wrapper for primitive bool

Declared In

Shopping_FindProductsResponseType.h

pageNumber

The number of the page of data returned. If many products
are found and multiple pages of results are available, use
this in combination with ApproximatePages and MoreResults
to decide which page to retrieve next. As FindProducts only
returns up to 2000 products, the maximum possible value is
theoretically 2000 (if you were to set MaxEntries to 1 in the
request).

@property (nonatomic, retain) NSNumber *pageNumber

Discussion

The number of the page of data returned. If many products
are found and multiple pages of results are available, use
this in combination with ApproximatePages and MoreResults
to decide which page to retrieve next. As FindProducts only
returns up to 2000 products, the maximum possible value is
theoretically 2000 (if you were to set MaxEntries to 1 in the
request).

type : NSNumber, wrapper for primitive int

Declared In

Shopping_FindProductsResponseType.h

product

An eBay catalog product. This contains stock information about a particular
DVD, camera, set of golf clubs, or other product. When you use QueryKeywords
in the request, FindProducts returns a maximum of 20 products per page. When
you use ProductID in the request, FindProducts usually only returns 1 product
by default. (If more than one product matches the same ProductID, FindProducts
will return all of those products. As of the time of this writing, we expect
this to be a rare case.)

@property (nonatomic, retain) NSMutableArray *product

Discussion

An eBay catalog product. This contains stock information about a particular
DVD, camera, set of golf clubs, or other product. When you use QueryKeywords
in the request, FindProducts returns a maximum of 20 products per page. When
you use ProductID in the request, FindProducts usually only returns 1 product
by default. (If more than one product matches the same ProductID, FindProducts
will return all of those products. As of the time of this writing, we expect
this to be a rare case.)

entry type : class Shopping_CatalogProductType

Declared In

Shopping_FindProductsResponseType.h

totalProducts

The total number of matching products found. (If more than 2000 products are
found, the call fails with an error.)

@property (nonatomic, retain) NSNumber *totalProducts

Discussion

The total number of matching products found. (If more than 2000 products are
found, the call fails with an error.)

type : NSNumber, wrapper for primitive int

Declared In

Shopping_FindProductsResponseType.h