UNPKG

ebay-api

Version:

eBay API for Node and Browser

15 lines (14 loc) 548 B
import Restful from '../../index.js'; /** * Enables a seller adding an ad or item on a Partner's site to automatically create an eBay listing draft using the item details from the Partner's site. */ export default class Listing extends Restful { static id: string; get basePath(): string; /** * This call gives Partners the ability to create an eBay draft of a item for their seller using information from their site. * * @param data The ItemDraft */ createItemDraft(data?: any): Promise<any>; }