以下のインターフェースを使ったオブジェクトのうち、正しく定義されているものはどれですか? ```typescript interface Product { id: number; name: string; price: number; } ```