UNPKG

@scaleleap/amazon-marketplaces

Version:

A collection of Amazon Marketplace data objects.

22 lines (21 loc) 433 B
export interface AmazonSellingPartnerApiRegion { /** * Region code. */ code: string; /** * Region name. */ name: string; /** * Access endpoint URI. */ endpoint: string; /** * AWS region. */ awsRegion: string; } export declare class AmazonSellingPartnerApiRegion implements AmazonSellingPartnerApiRegion { constructor(data: AmazonSellingPartnerApiRegion); }