export declare type Request = {
    /**
     * Defines the date and time the object was initially created.
     */
    create_time: string;
    /**
     * Status indicates the status of the object.
     */
    status: string;
    message: string;
};
