@guardian/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
21 lines • 624 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContactService = void 0;
class ContactService {
constructor(client) {
this._client = client;
}
async createContacts(contacts) {
return this._client.createContacts({ contacts });
}
async getContactsByStatement(statement) {
return this._client.getContactsByStatement({
statement,
});
}
async updateContacts(contacts) {
return this._client.updateContacts({ contacts });
}
}
exports.ContactService = ContactService;
//# sourceMappingURL=contact.service.js.map