import { SuperMarketplaceProduct } from '../models/SuperMarketplaceProduct'; import { RequiredDeep } from '../models/RequiredDeep'; export default class Mes { private impersonating; /** * @ignore * not part of public api, don't include in generated docs */ constructor(); /** * @param productID ID of the product. * @param accessToken Provide an alternative token to the one stored in the sdk instance (useful for impersonation). */ GetSuperProduct(productID: string, accessToken?: string): Promise>; /** * @description * enables impersonation by calling the subsequent method with the stored impersonation token * * @example * Mes.As().List() // lists Mes using the impersonated users' token */ As(): this; }