/**
 * Request status.
 */
export declare enum RequestStatus {
    /**
     *  The request has been created but not sent to a Bloomberg service.
     */
    Created = "CREATED",
    /**
     * The actual request has been sent to a Bloomberg service, but is not active yet. Response still not available.
     */
    Opened = "OPENED",
    /**
     * The request has been sent to a Bloomberg service successfully. Responses may be received.
     */
    Active = "ACTIVE",
    /**
     * The request has failed to open or an error is received from a Bloomberg service.
     */
    Failed = "FAILED",
    /**
     * The request was closed before completing. No more responses will be received.
     */
    Closed = "CLOSED",
    /**
     * The request was completed successfully. No more responses will be received.
     */
    Completed = "COMPLETED"
}
