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