UNPKG
@cargozone/amazon-sp-api
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Amazon Selling Partner API client
cargozone.ai
CargoZone/amazon-sp-api
@cargozone/amazon-sp-api
/
lib
/
typings
/
operations
/
authorization.ts
14 lines
(11 loc)
•
303 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
BaseResponse
}
from
"../baseTypes"
;
export
interface
GetAuthorizationCodeQuery
{
sellingPartnerId
:
string
;
developerId
:
string
;
mwsAuthToken
:
string
; }
export
interface
GetAuthorizationCodeResponse
extends
BaseResponse
{
payload
?: {
authorizationCode
:
string
; }; }