We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d64f2 commit 6a97b32Copy full SHA for 6a97b32
src/backendless.d.ts
@@ -268,7 +268,7 @@ declare module __Backendless {
268
* @constructor
269
*/
270
class DeliveryOptions {
271
- pushPolicy:string;
+ publishPolicy:string;
272
pushBroadcast:number;
273
pushSinglecast:string[];
274
publishAt:number;
src/backendless.js
@@ -5642,7 +5642,7 @@
5642
5643
var DeliveryOptions = function(args) {
5644
args = args || {};
5645
- this.pushPolicy = args.pushPolicy || undefined;
+ this.publishPolicy = args.publishPolicy || undefined;
5646
this.pushBroadcast = args.pushBroadcast || undefined;
5647
this.pushSinglecast = args.pushSinglecast || undefined;
5648
this.publishAt = args.publishAt || undefined;
0 commit comments