export interface LegacyExtendError { /** Error code identifying the type of error */ code: string; /** Human-readable error message */ message: string; /** Unique request identifier for support purposes */ requestId: string; /** Whether the request can be retried */ retryable: boolean; }