Information required to create the feed.

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. These vary by feed type.

Type declaration

  • [key: string]: string

Memberof

CreateFeedSpecification

feedType: string

The feed type.

Memberof

CreateFeedSpecification

inputFeedDocumentId: string

The document identifier returned by the createFeedDocument operation. 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