Export

FeedDocument

interface FeedDocument {
    compressionAlgorithm?: "GZIP";
    encryptionDetails: FeedDocumentEncryptionDetails;
    feedDocumentId: string;
    url: string;
}

Properties

compressionAlgorithm?: "GZIP"

If the feed document contents have been compressed, the compression algorithm used is returned in this property and you must decompress the feed when you download. Otherwise, you can download the feed directly. Refer to Step 6. Download and decrypt the feed processing report in the use case guide, where sample code is provided.

Memberof

FeedDocument

Memberof

FeedDocument

feedDocumentId: string

The identifier for the feed document. This identifier is unique only in combination with a seller ID.

Memberof

FeedDocument

url: string

A presigned URL for the feed document. If compressionAlgorithm is not returned, you can download the feed directly from this URL. This URL expires after 5 minutes.

Memberof

FeedDocument