UNPKG

amazon-sp-api-node8

Version:

Amazon Selling Partner API client for Node version 8x

14 lines (11 loc) 290 B
import { BaseResponse } from "../baseTypes"; export interface GetAuthorizationCodeQuery { sellingPartnerId: string; developerId: string; mwsAuthToken: string; } export interface GetAuthorizationCodeResponse extends BaseResponse { payload?: { authorizationCode: string; }; }