Export

ReportDocument

interface ReportDocument {
    compressionAlgorithm?: "GZIP";
    encryptionDetails: ReportDocumentEncryptionDetails;
    reportDocumentId: string;
    url: string;
}

Properties

compressionAlgorithm?: "GZIP"

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

Memberof

ReportDocument

Memberof

ReportDocument

reportDocumentId: string

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

Memberof

ReportDocument

url: string

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

Memberof

ReportDocument