Files
manybot/node_modules/whatsapp-web.js/src/structures/BusinessContact.js
2026-03-12 01:22:29 -03: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;