Trading_GetFeedbackRequestType Class Reference
Inherits from | Trading_AbstractRequestType : NSObject |
Declared in | Trading_GetFeedbackRequestType.h Trading_GetFeedbackRequestType.m |
Overview
Retrieves the accumulated feedback left for a specified user or the summary
feedback data for a specific order line item or item listing. Also for
Half.com.
@ingroup EBayAPIInterface
Tasks
-
userID
Specifies the user whose feedback data is to be returned. If not
property
specified, then the feedback returned is for the requesting user. -
feedbackID
An ID that uniquely identifies a feedback record to be retrieved.
property
Used only by the Feedback notification. -
itemID
Unique identifier for an eBay item listing. A listing can have multiple
property
order line items (transactions), but only one ItemID. If ItemID is
specified in the GetFeedback request, the returned feedback records are
restricted to the specified ItemID. The FeedbackType and Pagination
fields (if included) are ignored. The maximum number of feedback records
returned is 100. -
transactionID
Unique identifier for an eBay order line item (transaction). A
property
TransactionID can be paired up with its corresponding ItemID and used as
an input filter in the GetFeedback request. If an ItemID/TransactionID
pair or an OrderLineItemID value is used to retrieve a feedback record
on a specific order line item, the FeedbackType and Pagination
fields (if included) are ignored. -
commentType
Returns feedback of a specified type (positive, negative, or neutral) in
property
FeedbackDetailArray. You can include two comment types in your call if you want
to exclude the third type from your results. If no CommentType is specified,
all of the feedback types are returned. -
feedbackType
Returns feedback that you received as a buyer or seller, or feedback you left
property
for others (as either a buyer or a seller). You can include only one
FeedbackType in your call. If no FeedbackType is specified, all of the
available feedback is returned. -
pagination
Controls the pagination of the result set. Child elements, EntriesPerPage and
property
PageNumber, specify the maximum number of individual feedback records to return
per call and which page of data to return. Only applicable if DetailLevel is
set to ReturnAll and the call is returning feedback for a UserID. Feedback
summary data is not paginated, but when pagination is used, it is returned
after the last feedback detail entry.
Accepted values for Pagination.EntriesPerPage for GetFeedback is 25 (the
default), 50, 100, and 200. If you specify a value of zero, or a value
greater than 200, the call fails with an error. If you specify a value between
one and twenty-four, the value is rounded up to 25. Values between 26 and 199
that are not one of the accepted values are rounded down to the nearest
accepted value. -
orderLineItemID
OrderLineItemID is a unique identifier for an eBay order line item and
property
is based upon the concatenation of ItemID and TransactionID, with a
hyphen in between these two IDs. An OrderLineItemID can be used as an
input filter in the GetFeedback request. If an OrderLineItemID value is
used to retrieve a feedback record on a specific order line item, the
FeedbackType and Pagination fields (if included) are ignored.
Properties
commentType
Returns feedback of a specified type (positive, negative, or neutral) in
FeedbackDetailArray. You can include two comment types in your call if you want
to exclude the third type from your results. If no CommentType is specified,
all of the feedback types are returned.
@property (nonatomic, retain) NSMutableArray *commentType
Discussion
Returns feedback of a specified type (positive, negative, or neutral) in
FeedbackDetailArray. You can include two comment types in your call if you want
to exclude the third type from your results. If no CommentType is specified,
all of the feedback types are returned.
entry type : string constant in Trading_CommentTypeCodeType.h
Declared In
Trading_GetFeedbackRequestType.h
feedbackID
An ID that uniquely identifies a feedback record to be retrieved.
Used only by the Feedback notification.
@property (nonatomic, retain) NSString *feedbackID
Discussion
An ID that uniquely identifies a feedback record to be retrieved.
Used only by the Feedback notification.
type : NSString, wrapper for primitive string
Declared In
Trading_GetFeedbackRequestType.h
feedbackType
Returns feedback that you received as a buyer or seller, or feedback you left
for others (as either a buyer or a seller). You can include only one
FeedbackType in your call. If no FeedbackType is specified, all of the
available feedback is returned.
@property (nonatomic, retain) NSString *feedbackType
Discussion
Returns feedback that you received as a buyer or seller, or feedback you left
for others (as either a buyer or a seller). You can include only one
FeedbackType in your call. If no FeedbackType is specified, all of the
available feedback is returned.
type: string constant in Trading_FeedbackTypeCodeType.h
Declared In
Trading_GetFeedbackRequestType.h
itemID
Unique identifier for an eBay item listing. A listing can have multiple
order line items (transactions), but only one ItemID. If ItemID is
specified in the GetFeedback request, the returned feedback records are
restricted to the specified ItemID. The FeedbackType and Pagination
fields (if included) are ignored. The maximum number of feedback records
returned is 100.
@property (nonatomic, retain) NSString *itemID
Discussion
Unique identifier for an eBay item listing. A listing can have multiple
order line items (transactions), but only one ItemID. If ItemID is
specified in the GetFeedback request, the returned feedback records are
restricted to the specified ItemID. The FeedbackType and Pagination
fields (if included) are ignored. The maximum number of feedback records
returned is 100.
type : NSString, wrapper for primitive string
Declared In
Trading_GetFeedbackRequestType.h
orderLineItemID
OrderLineItemID is a unique identifier for an eBay order line item and
is based upon the concatenation of ItemID and TransactionID, with a
hyphen in between these two IDs. An OrderLineItemID can be used as an
input filter in the GetFeedback request. If an OrderLineItemID value is
used to retrieve a feedback record on a specific order line item, the
FeedbackType and Pagination fields (if included) are ignored.
@property (nonatomic, retain) NSString *orderLineItemID
Discussion
OrderLineItemID is a unique identifier for an eBay order line item and
is based upon the concatenation of ItemID and TransactionID, with a
hyphen in between these two IDs. An OrderLineItemID can be used as an
input filter in the GetFeedback request. If an OrderLineItemID value is
used to retrieve a feedback record on a specific order line item, the
FeedbackType and Pagination fields (if included) are ignored.
type : NSString, wrapper for primitive string
Declared In
Trading_GetFeedbackRequestType.h
pagination
Controls the pagination of the result set. Child elements, EntriesPerPage and
PageNumber, specify the maximum number of individual feedback records to return
per call and which page of data to return. Only applicable if DetailLevel is
set to ReturnAll and the call is returning feedback for a UserID. Feedback
summary data is not paginated, but when pagination is used, it is returned
after the last feedback detail entry.
Accepted values for Pagination.EntriesPerPage for GetFeedback is 25 (the
default), 50, 100, and 200. If you specify a value of zero, or a value
greater than 200, the call fails with an error. If you specify a value between
one and twenty-four, the value is rounded up to 25. Values between 26 and 199
that are not one of the accepted values are rounded down to the nearest
accepted value.
@property (nonatomic, retain) Trading_PaginationType *pagination
Discussion
Controls the pagination of the result set. Child elements, EntriesPerPage and
PageNumber, specify the maximum number of individual feedback records to return
per call and which page of data to return. Only applicable if DetailLevel is
set to ReturnAll and the call is returning feedback for a UserID. Feedback
summary data is not paginated, but when pagination is used, it is returned
after the last feedback detail entry.
Accepted values for Pagination.EntriesPerPage for GetFeedback is 25 (the
default), 50, 100, and 200. If you specify a value of zero, or a value
greater than 200, the call fails with an error. If you specify a value between
one and twenty-four, the value is rounded up to 25. Values between 26 and 199
that are not one of the accepted values are rounded down to the nearest
accepted value.
type : class Trading_PaginationType
Declared In
Trading_GetFeedbackRequestType.h
transactionID
Unique identifier for an eBay order line item (transaction). A
TransactionID can be paired up with its corresponding ItemID and used as
an input filter in the GetFeedback request. If an ItemID/TransactionID
pair or an OrderLineItemID value is used to retrieve a feedback record
on a specific order line item, the FeedbackType and Pagination
fields (if included) are ignored.
@property (nonatomic, retain) NSString *transactionID
Discussion
Unique identifier for an eBay order line item (transaction). A
TransactionID can be paired up with its corresponding ItemID and used as
an input filter in the GetFeedback request. If an ItemID/TransactionID
pair or an OrderLineItemID value is used to retrieve a feedback record
on a specific order line item, the FeedbackType and Pagination
fields (if included) are ignored.
type : NSString, wrapper for primitive string
Declared In
Trading_GetFeedbackRequestType.h
userID
Specifies the user whose feedback data is to be returned. If not
specified, then the feedback returned is for the requesting user.
@property (nonatomic, retain) NSString *userID
Discussion
Specifies the user whose feedback data is to be returned. If not
specified, then the feedback returned is for the requesting user.
type : NSString, wrapper for primitive string
Declared In
Trading_GetFeedbackRequestType.h