/** * @type ConsentSubscriptionError: Error details for failed subscription updates * * @property code: Error code indicating the type of failure * - **Max Length:** 100 * * @property message: Human-readable error message * - **Max Length:** 500 * * @property details: Additional error details * */ export type ConsentSubscriptionError = { code: string; message: string; details?: object; } & { [key: string]: any; };