Inherits from Trading_AbstractResponseType : NSObject
Declared in Trading_GetSellerListResponseType.h
Trading_GetSellerListResponseType.m

Overview

Contains a list of the items listed by the seller specified as input. The list of
items is returned in an ItemArrayType object, in which are returned zero, one, or
multiple ItemType objects. Each ItemType object contains the detail data for one
item listing.

@ingroup EBayAPIInterface

Tasks

  •   paginationResult

    Contains information regarding the pagination of data (if pagination is
    used), including total number of pages and total number of entries.

    property
  •   hasMoreItems

    If true, there are more items yet to be retrieved. Additional
    GetSellerList calls with higher page numbers or more items per page must
    be made to retrieve these items. Not returned if no items match the
    request.

    property
  •   itemArray

    Contains the list of the seller’s items, one ItemType object per item.
    Returns empty if no items are available that match the request.

    property
  •   itemsPerPage

    Indicates the number of items that are being returned per page of data
    (i.e., per call). Will be the same as the value specified in the
    Pagination.EntriesPerPage input. Only returned if items are returned.

    property
  •   pageNumber

    Indicates which page of data was just returned. Will be the same as the
    value specified in the Pagination.PageNumber input. (If the input is
    higher than the total number of pages, the call fails with an error.)
    Only returned if items are returned.

    property
  •   returnedItemCountActual

    Indicates the total number of items returned (i.e., the number of
    ItemType objects in ItemArray).

    property
  •   seller

    Indicates the seller whose items are returned. The seller is the eBay
    member whose UserID was passed in the request. If UserID was not
    specified, the seller is the user who made the request (identified by
    eBayAuthToken).

    property

Properties

hasMoreItems

If true, there are more items yet to be retrieved. Additional
GetSellerList calls with higher page numbers or more items per page must
be made to retrieve these items. Not returned if no items match the
request.

@property (nonatomic, retain) NSNumber *hasMoreItems

Discussion

If true, there are more items yet to be retrieved. Additional
GetSellerList calls with higher page numbers or more items per page must
be made to retrieve these items. Not returned if no items match the
request.

type : NSNumber, wrapper for primitive bool

Declared In

Trading_GetSellerListResponseType.h

itemArray

Contains the list of the seller’s items, one ItemType object per item.
Returns empty if no items are available that match the request.

@property (nonatomic, retain) Trading_ItemArrayType *itemArray

Discussion

Contains the list of the seller’s items, one ItemType object per item.
Returns empty if no items are available that match the request.

type : class Trading_ItemArrayType

Declared In

Trading_GetSellerListResponseType.h

itemsPerPage

Indicates the number of items that are being returned per page of data
(i.e., per call). Will be the same as the value specified in the
Pagination.EntriesPerPage input. Only returned if items are returned.

@property (nonatomic, retain) NSNumber *itemsPerPage

Discussion

Indicates the number of items that are being returned per page of data
(i.e., per call). Will be the same as the value specified in the
Pagination.EntriesPerPage input. Only returned if items are returned.

type : NSNumber, wrapper for primitive int

Declared In

Trading_GetSellerListResponseType.h

pageNumber

Indicates which page of data was just returned. Will be the same as the
value specified in the Pagination.PageNumber input. (If the input is
higher than the total number of pages, the call fails with an error.)
Only returned if items are returned.

@property (nonatomic, retain) NSNumber *pageNumber

Discussion

Indicates which page of data was just returned. Will be the same as the
value specified in the Pagination.PageNumber input. (If the input is
higher than the total number of pages, the call fails with an error.)
Only returned if items are returned.

type : NSNumber, wrapper for primitive int

Declared In

Trading_GetSellerListResponseType.h

paginationResult

Contains information regarding the pagination of data (if pagination is
used), including total number of pages and total number of entries.

@property (nonatomic, retain) Trading_PaginationResultType *paginationResult

Discussion

Contains information regarding the pagination of data (if pagination is
used), including total number of pages and total number of entries.

type : class Trading_PaginationResultType

Declared In

Trading_GetSellerListResponseType.h

returnedItemCountActual

Indicates the total number of items returned (i.e., the number of
ItemType objects in ItemArray).

@property (nonatomic, retain) NSNumber *returnedItemCountActual

Discussion

Indicates the total number of items returned (i.e., the number of
ItemType objects in ItemArray).

type : NSNumber, wrapper for primitive int

Declared In

Trading_GetSellerListResponseType.h

seller

Indicates the seller whose items are returned. The seller is the eBay
member whose UserID was passed in the request. If UserID was not
specified, the seller is the user who made the request (identified by
eBayAuthToken).

@property (nonatomic, retain) Trading_UserType *seller

Discussion

Indicates the seller whose items are returned. The seller is the eBay
member whose UserID was passed in the request. If UserID was not
specified, the seller is the user who made the request (identified by
eBayAuthToken).

type : class Trading_UserType

Declared In

Trading_GetSellerListResponseType.h