메소드 | 설명 | |
---|---|---|
FixedPriceOfferMethods ( |
Initializes a new instance of the FixedPriceOfferMethods class.
|
|
FixedPriceOffers ( string query ) : FixedPriceOffers |
Performs the Fixed Price Offer Method: Retrieves a list of the outstanding fixed price offers that have been offered to the currently authenticated user. GET using the "query" string provided - should be the "MyTradeMe/FixedPriceOffers.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". REQUIRES AUTHENTICATION.
|
|
FixedPriceOffersByMember ( ) : FixedPriceOffers |
Performs the Fixed Price Offer Method: Retrieve the fixed price offers offered by a member. GET Creates a query string and performs the request. REQUIRES AUTHENTICATION.
|
|
FixedPriceOffersToMember ( ) : FixedPriceOffers |
Performs the Fixed Price Offer Method: Retrieves a list of the outstanding fixed price offers that have been offered to the currently authenticated user. GET Creates a query string and performs the request. REQUIRES AUTHENTICATION.
|
|
MakeFixedPriceOffer ( FixedPriceOfferToMembersRequest request ) : System.Xml.Linq.XDocument |
Performs the Fixed Price Offer Method: Makes a fixed price offer for an auction to the specified members. POST REQUIRES AUTHENTICATION.
|
|
RespondToFixedPriceOffer ( FixedPriceOfferRequest request ) : System.Xml.Linq.XDocument |
Performs the Fixed Price Offer Method: Accepts or rejects a fixed price offer. POST REQUIRES AUTHENTICATION.
|
|
RetrieveListOfMembersForFixedPriceOffer ( string listingId, string filter ) : FixedPriceOfferMembersResponse |
Performs the Fixed Price Offer method: Returns a list of members you can make a fixed price offer to for a particular auction. GET REQUIRE AUTHENTICATION.
|
|
WithdrawFixedPriceOffer ( FixedPriceOfferWithdrawalRequest request ) : System.Xml.Linq.XDocument |
Performs the Fixed Price Offer Method: Withdraws an offer that is current and not expired, accepted or rejected by all users. POST REQUIRES AUTHENTICATION.
|
public FixedPriceOfferMethods ( |
||
connect | A ConnectionMethods class used to make calls to the API | |
리턴 | System |
public FixedPriceOffers ( string query ) : FixedPriceOffers | ||
query | string | The query string that will be added to the base url and used to connect to the API. |
리턴 | FixedPriceOffers |
public FixedPriceOffersByMember ( ) : FixedPriceOffers | ||
리턴 | FixedPriceOffers |
public FixedPriceOffersToMember ( ) : FixedPriceOffers | ||
리턴 | FixedPriceOffers |
public MakeFixedPriceOffer ( FixedPriceOfferToMembersRequest request ) : System.Xml.Linq.XDocument | ||
request | FixedPriceOfferToMembersRequest | The object that will be serialized into xml and then sent in a POST message. |
리턴 | System.Xml.Linq.XDocument |
public RespondToFixedPriceOffer ( FixedPriceOfferRequest request ) : System.Xml.Linq.XDocument | ||
request | FixedPriceOfferRequest | The object that will be serialized into xml and then sent in a POST message. |
리턴 | System.Xml.Linq.XDocument |
public RetrieveListOfMembersForFixedPriceOffer ( string listingId, string filter ) : FixedPriceOfferMembersResponse | ||
listingId | string | The listing ID of the auction you wish to make a fixed price offer for. The listing must be closed. |
filter | string | Filters the returned list to a subset of possible members /// (“All”, “Bidders” – only return bidders, “Watchers” – only return watchers). |
리턴 | FixedPriceOfferMembersResponse |
public WithdrawFixedPriceOffer ( FixedPriceOfferWithdrawalRequest request ) : System.Xml.Linq.XDocument | ||
request | FixedPriceOfferWithdrawalRequest | The object that will be serialized into xml and then sent in a POST message. |
리턴 | System.Xml.Linq.XDocument |