UNPKG
adwords-api
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Unofficial SDK for Google Adwords API
github.com/fallentech/adwords-api
fallentech/adwords-api
adwords-api
/
types
/
paging.js
18 lines
(14 loc)
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var
Backbone =
require
(
'backbone'
);
var
Paging = Backbone.Model.
extend
({
defaults
: {
startIndex
:
0
,
numberResults
:
100
} });
var
PagingCollection = Backbone.Collection.
extend
({
model
: Paging }); module.exports = { collection: PagingCollection, model: Paging };