D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
whatsapp-api
/
node_modules
/
whatsapp-web.js
/
src
/
structures
/
Filename :
ProductMetadata.js
back
Copy
const Base = require('./Base'); class ProductMetadata extends Base { constructor(client, data) { super(client); if (data) this._patch(data); } _patch(data) { /** Product ID */ this.id = data.id; /** Retailer ID */ this.retailer_id = data.retailer_id; /** Product Name */ this.name = data.name; /** Product Description */ this.description = data.description; return super._patch(data); } } module.exports = ProductMetadata;