diff --git a/products.yml b/products.yml index 67c1afa9..65e6a437 100644 --- a/products.yml +++ b/products.yml @@ -87,5 +87,3 @@ components: type: string price: type: number - foobar: - type: boolean diff --git a/src/product.js b/src/product.js index 12e3d984..f751edf2 100644 --- a/src/product.js +++ b/src/product.js @@ -1,8 +1,7 @@ export class Product { - constructor({id, name, type, foobar}) { + constructor({id, name, type}) { this.id = id this.name = name this.type = type - this.foobar = foobar } } \ No newline at end of file