export interface FeedbackSubmitResponse { /** RFC3339 timestamp when the feedback was recorded. */ createdAt?: string; /** Unique identifier assigned to this feedback submission. */ feedbackId?: string; /** Human-readable result message. */ message?: string; /** Whether the feedback was durably stored. */ recorded?: boolean; /** The query request ID this feedback was recorded against. */ requestId?: string; }