UNPKG

ebay-api

Version:

eBay API for Node and Browser

19 lines (18 loc) 501 B
import Restful from '../../index.js'; /** * This API allows 3rd party developers to translate item title, description, search query. */ export default class Translation extends Restful { get basePath() { return '/commerce/translation/v1_beta'; } /** * Translates input text inot a given language. * * @param body TranslateRequest */ translate(body) { return this.post(`/translate`, body); } } Translation.id = 'Translation';