/**
 * Forbidden Problem description and properties
 */
export type ForbiddenProblem = {
    /**
     * Gets or sets the error status.
     */
    status?: number;
    /**
     * Gets or sets the error code.
     */
    code?: string | null;
    /**
     * Gets or sets the error title.
     */
    title?: string | null;
    /**
     * Gets or sets the error detail.
     */
    detail?: string | null;
    /**
     * Gets or sets the error type.
     */
    type?: string | null;
    /**
     * Gets the Trace ID for the error.
     */
    traceId?: string | null;
};
