Files
whatsapp-web.js/src/structures/BusinessContact.js
2020-02-04 23:04:51 -04:00

21 lines
386 B
JavaScript

'use strict';
const Contact = require('./Contact');
/**
* Represents a Business Contact on WhatsApp
* @extends {Contact}
*/
class BusinessContact extends Contact {
_patch(data) {
/**
* The contact's business profile
*/
this.businessProfile = data.businessProfile;
return super._patch(data);
}
}
module.exports = BusinessContact;