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.

CreateFeedSpecification

feedType: string

The feed type.

CreateFeedSpecification

inputFeedDocumentId: string

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

CreateFeedSpecification

marketplaceIds: string[]

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

CreateFeedSpecification