@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
31 lines • 1.16 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MobileApplicationService = void 0;
class MobileApplicationService {
constructor(client) {
this._client = client;
}
async createMobileApplications(mobileApplications) {
return this._client.createMobileApplications({ mobileApplications });
}
async getMobileApplicationsByStatement(filterStatement) {
return this._client.getMobileApplicationsByStatement({
filterStatement,
});
}
async performMobileApplicationAction(mobileApplicationAction, filterStatement) {
return this._client.performMobileApplicationAction({
mobileApplicationAction: {
attributes: {
'xsi:type': mobileApplicationAction.constructor.name,
},
},
filterStatement,
});
}
async updateMobileApplications(mobileApplications) {
return this._client.updateMobileApplications({ mobileApplications });
}
}
exports.MobileApplicationService = MobileApplicationService;
//# sourceMappingURL=mobileApplication.service.js.map