export type BrokerResponseErrorDetails = {
    /**
     * The error type.
     */
    type?: string | null;
    /**
     * The error title.
     */
    title?: string | null;
    /**
     * The error detail.
     */
    detail?: string | null;
    /**
     * The error code.
     */
    code?: string | null;
};
