UNPKG

@lorenstuff/amazon-selling-partner-api

Version:

A package for interacting with the Amazon Selling Partner API.

23 lines 558 B
export interface CreateUploadDestinationForResourceQuery { marketplaceIds: string[]; contentMD5: string; contentType?: string; } export interface CreateUploadDestinationResponse { payload?: UploadDestination; errors?: ErrorList; } export interface Error { code: string; message: string; details?: string; } export type ErrorList = Error[]; export interface UploadDestination { uploadDestinationId?: string; url?: string; headers?: { [key: string]: string; }; } //# sourceMappingURL=v2020-11-01.d.ts.map