Interface ExportURLAttachment

The ExportURLAttachment is the attachment of the ExportJobInterfaceSignal.ExportJobURLReady signal sent by the ExportJobInterface when the url of a file is available after a successful call to ExportJobInterface.computeDownloadURL.

This object stores information about the file offset and the url to download such a file.


Events

interface ExportURLAttachment {
    fileOffset: number;
    url: string;
}

Properties

Properties

fileOffset: number

The fileOffset tells the offset inside the ExportJobInterface this event refers to.

url: string

The url to download the resulting package (same as ExportJobInterface.getDownloadURL).