/**
 * Error Forbidden
 *
 * Error message for forbidden requests.
 */
export type ErrorForbidden = {
    /**
     * Short description of the error.
     */
    error_message?: string;
    /**
     * Platform code for the error.
     */
    error_code?: string;
    /**
     * HTTP status code for the error.
     */
    status_code?: string;
};
//# sourceMappingURL=error-forbidden.d.cts.map