/** * Response after updating a context. */ export interface UpdateContextResponse { /** The unique identifier of the updated context. */ id?: string | undefined; /** The slug of the updated context. */ slug?: string | undefined; /** The name of the updated context. */ name?: string | undefined; /** Timestamp of when the context was updated. */ updated_at?: string | undefined; }