Selling Partner API for Sales The Selling Partner API for Sales provides APIs related to sales performance.

The version of the OpenAPI document: v1

NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). https://openapi-generator.tech Do not edit the class manually.

interface ConfigurationParameters {
    accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>);
    apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>);
    baseOptions?: any;
    basePath?: string;
    formDataCtor?: (new () => any);
    password?: string;
    username?: string;
}

Properties

accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

Type declaration

    • (name?, scopes?): string
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns string

Type declaration

    • (name?, scopes?): Promise<string>
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns Promise<string>

apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

Type declaration

    • (name): string
    • Parameters

      • name: string

      Returns string

Type declaration

    • (name): Promise<string>
    • Parameters

      • name: string

      Returns Promise<string>

baseOptions?: any
basePath?: string
formDataCtor?: (new () => any)

Type declaration

    • new (): any
    • Returns any

password?: string
username?: string