Export

CreateFeedSpecification

interface CreateFeedSpecification {
    feedOptions?: {
        [key: string]: string;
    };
    feedType: string;
    inputFeedDocumentId: string;
    marketplaceIds: string[];
}

Properties

feedOptions?: {
    [key: string]: string;
}

Additional options to control the feed. For feeds that use the feedOptions parameter, you can find the parameter values in the feed description in feedType values.

Type declaration

  • [key: string]: string

Memberof

CreateFeedSpecification

feedType: string

The feed type.

Memberof

CreateFeedSpecification

inputFeedDocumentId: string

The document identifier returned by the createFeedDocument operation. Encrypt and upload the feed document contents before calling the createFeed operation.

Memberof

CreateFeedSpecification

marketplaceIds: string[]

A list of identifiers for marketplaces that you want the feed to be applied to.

Memberof

CreateFeedSpecification