dataforseo-client 1.0.23 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.d.ts +292 -320
- package/main.js +255 -194
- package/main.js.map +1 -1
- package/main.ts +651 -618
- package/package.json +1 -1
package/main.ts
CHANGED
|
@@ -20448,6 +20448,11 @@ left, right */
|
|
|
20448
20448
|
result.init(data);
|
|
20449
20449
|
return result;
|
|
20450
20450
|
}
|
|
20451
|
+
if (data["type"] === "knowledge_graph_ai_overview_item") {
|
|
20452
|
+
let result = new KnowledgeGraphAiOverviewItemSerpElementItem();
|
|
20453
|
+
result.init(data);
|
|
20454
|
+
return result;
|
|
20455
|
+
}
|
|
20451
20456
|
if (data["type"] === "knowledge_graph") {
|
|
20452
20457
|
let result = new KnowledgeGraphSerpElementItem();
|
|
20453
20458
|
result.init(data);
|
|
@@ -26999,7 +27004,7 @@ export interface ISerpGoogleOrganicTasksFixedResponseInfo extends IBaseResponseI
|
|
|
26999
27004
|
export class PaidSerpElementItem extends BaseSerpElementItem implements IPaidSerpElementItem {
|
|
27000
27005
|
/** title of the result in SERP */
|
|
27001
27006
|
title?: string | undefined;
|
|
27002
|
-
/**
|
|
27007
|
+
/** domain name of the reference */
|
|
27003
27008
|
domain?: string | undefined;
|
|
27004
27009
|
/** breadcrumb in SERP */
|
|
27005
27010
|
breadcrumb?: string | undefined;
|
|
@@ -27146,7 +27151,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
27146
27151
|
export interface IPaidSerpElementItem extends IBaseSerpElementItem {
|
|
27147
27152
|
/** title of the result in SERP */
|
|
27148
27153
|
title?: string | undefined;
|
|
27149
|
-
/**
|
|
27154
|
+
/** domain name of the reference */
|
|
27150
27155
|
domain?: string | undefined;
|
|
27151
27156
|
/** breadcrumb in SERP */
|
|
27152
27157
|
breadcrumb?: string | undefined;
|
|
@@ -27185,7 +27190,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
27185
27190
|
}
|
|
27186
27191
|
|
|
27187
27192
|
export class OrganicSerpElementItem extends BaseSerpElementItem implements IOrganicSerpElementItem {
|
|
27188
|
-
/**
|
|
27193
|
+
/** domain name of the reference */
|
|
27189
27194
|
domain?: string | undefined;
|
|
27190
27195
|
/** title of the result in SERP */
|
|
27191
27196
|
title?: string | undefined;
|
|
@@ -27389,7 +27394,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
27389
27394
|
}
|
|
27390
27395
|
|
|
27391
27396
|
export interface IOrganicSerpElementItem extends IBaseSerpElementItem {
|
|
27392
|
-
/**
|
|
27397
|
+
/** domain name of the reference */
|
|
27393
27398
|
domain?: string | undefined;
|
|
27394
27399
|
/** title of the result in SERP */
|
|
27395
27400
|
title?: string | undefined;
|
|
@@ -28031,7 +28036,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
28031
28036
|
}
|
|
28032
28037
|
|
|
28033
28038
|
export class KnowledgeGraphDescriptionItemSerpElementItem extends BaseSerpElementItem implements IKnowledgeGraphDescriptionItemSerpElementItem {
|
|
28034
|
-
/** description
|
|
28039
|
+
/** text or description of the element in SERP */
|
|
28035
28040
|
text?: string | undefined;
|
|
28036
28041
|
/** sitelinks
|
|
28037
28042
|
the links shown below some of Google’s search results
|
|
@@ -28092,7 +28097,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
28092
28097
|
}
|
|
28093
28098
|
|
|
28094
28099
|
export interface IKnowledgeGraphDescriptionItemSerpElementItem extends IBaseSerpElementItem {
|
|
28095
|
-
/** description
|
|
28100
|
+
/** text or description of the element in SERP */
|
|
28096
28101
|
text?: string | undefined;
|
|
28097
28102
|
/** sitelinks
|
|
28098
28103
|
the links shown below some of Google’s search results
|
|
@@ -28357,7 +28362,8 @@ export class KnowledgeGraphRowItemSerpElementItem extends BaseSerpElementItem im
|
|
|
28357
28362
|
example:
|
|
28358
28363
|
kc:/common/topic:social media presence */
|
|
28359
28364
|
data_attrid?: string | undefined;
|
|
28360
|
-
/**
|
|
28365
|
+
/** reference text
|
|
28366
|
+
text snippet from the page that was used to generate the ai_overview_element */
|
|
28361
28367
|
text?: string | undefined;
|
|
28362
28368
|
/** links featured in the faq_box_element */
|
|
28363
28369
|
links?: (LinkElement | undefined)[] | undefined;
|
|
@@ -28426,7 +28432,8 @@ export interface IKnowledgeGraphRowItemSerpElementItem extends IBaseSerpElementI
|
|
|
28426
28432
|
example:
|
|
28427
28433
|
kc:/common/topic:social media presence */
|
|
28428
28434
|
data_attrid?: string | undefined;
|
|
28429
|
-
/**
|
|
28435
|
+
/** reference text
|
|
28436
|
+
text snippet from the page that was used to generate the ai_overview_element */
|
|
28430
28437
|
text?: string | undefined;
|
|
28431
28438
|
/** links featured in the faq_box_element */
|
|
28432
28439
|
links?: (LinkElement | undefined)[] | undefined;
|
|
@@ -28528,7 +28535,8 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
28528
28535
|
example:
|
|
28529
28536
|
2019-11-15 12:57:46 +00:00 */
|
|
28530
28537
|
timestamp?: string | undefined;
|
|
28531
|
-
/** table
|
|
28538
|
+
/** results table
|
|
28539
|
+
if there are none, equals null */
|
|
28532
28540
|
table?: Table | undefined;
|
|
28533
28541
|
|
|
28534
28542
|
[key: string]: any;
|
|
@@ -28614,7 +28622,8 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
28614
28622
|
example:
|
|
28615
28623
|
2019-11-15 12:57:46 +00:00 */
|
|
28616
28624
|
timestamp?: string | undefined;
|
|
28617
|
-
/** table
|
|
28625
|
+
/** results table
|
|
28626
|
+
if there are none, equals null */
|
|
28618
28627
|
table?: Table | undefined;
|
|
28619
28628
|
|
|
28620
28629
|
[key: string]: any;
|
|
@@ -28709,7 +28718,8 @@ export class KnowledgeGraphPartItemSerpElementItem extends BaseSerpElementItem i
|
|
|
28709
28718
|
example:
|
|
28710
28719
|
kc:/local:place qa */
|
|
28711
28720
|
data_attrid?: string | undefined;
|
|
28712
|
-
/**
|
|
28721
|
+
/** reference text
|
|
28722
|
+
text snippet from the page that was used to generate the ai_overview_element */
|
|
28713
28723
|
text?: string | undefined;
|
|
28714
28724
|
/** sitelinks
|
|
28715
28725
|
the links shown below some of Google’s search results
|
|
@@ -28780,7 +28790,8 @@ export interface IKnowledgeGraphPartItemSerpElementItem extends IBaseSerpElement
|
|
|
28780
28790
|
example:
|
|
28781
28791
|
kc:/local:place qa */
|
|
28782
28792
|
data_attrid?: string | undefined;
|
|
28783
|
-
/**
|
|
28793
|
+
/** reference text
|
|
28794
|
+
text snippet from the page that was used to generate the ai_overview_element */
|
|
28784
28795
|
text?: string | undefined;
|
|
28785
28796
|
/** sitelinks
|
|
28786
28797
|
the links shown below some of Google’s search results
|
|
@@ -29182,6 +29193,270 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
29182
29193
|
[key: string]: any;
|
|
29183
29194
|
}
|
|
29184
29195
|
|
|
29196
|
+
export class AiOverviewReference implements IAiOverviewReference {
|
|
29197
|
+
/** type of element */
|
|
29198
|
+
type?: string | undefined;
|
|
29199
|
+
/** reference source name or title */
|
|
29200
|
+
source?: string | undefined;
|
|
29201
|
+
/** website domain */
|
|
29202
|
+
domain?: string | undefined;
|
|
29203
|
+
/** URL */
|
|
29204
|
+
url?: string | undefined;
|
|
29205
|
+
/** title of a given link element */
|
|
29206
|
+
title?: string | undefined;
|
|
29207
|
+
/** row content */
|
|
29208
|
+
text?: string | undefined;
|
|
29209
|
+
|
|
29210
|
+
[key: string]: any;
|
|
29211
|
+
|
|
29212
|
+
constructor(data?: IAiOverviewReference) {
|
|
29213
|
+
if (data) {
|
|
29214
|
+
for (var property in data) {
|
|
29215
|
+
if (data.hasOwnProperty(property))
|
|
29216
|
+
(<any>this)[property] = (<any>data)[property];
|
|
29217
|
+
}
|
|
29218
|
+
}
|
|
29219
|
+
}
|
|
29220
|
+
|
|
29221
|
+
init(_data?: any) {
|
|
29222
|
+
if (_data) {
|
|
29223
|
+
for (var property in _data) {
|
|
29224
|
+
if (_data.hasOwnProperty(property))
|
|
29225
|
+
this[property] = _data[property];
|
|
29226
|
+
}
|
|
29227
|
+
this.type = _data["type"];
|
|
29228
|
+
this.source = _data["source"];
|
|
29229
|
+
this.domain = _data["domain"];
|
|
29230
|
+
this.url = _data["url"];
|
|
29231
|
+
this.title = _data["title"];
|
|
29232
|
+
this.text = _data["text"];
|
|
29233
|
+
}
|
|
29234
|
+
}
|
|
29235
|
+
|
|
29236
|
+
static fromJS(data: any): AiOverviewReference {
|
|
29237
|
+
data = typeof data === 'object' ? data : {};
|
|
29238
|
+
let result = new AiOverviewReference();
|
|
29239
|
+
result.init(data);
|
|
29240
|
+
return result;
|
|
29241
|
+
}
|
|
29242
|
+
|
|
29243
|
+
toJSON(data?: any) {
|
|
29244
|
+
data = typeof data === 'object' ? data : {};
|
|
29245
|
+
for (var property in this) {
|
|
29246
|
+
if (this.hasOwnProperty(property))
|
|
29247
|
+
data[property] = this[property];
|
|
29248
|
+
}
|
|
29249
|
+
data["type"] = this.type;
|
|
29250
|
+
data["source"] = this.source;
|
|
29251
|
+
data["domain"] = this.domain;
|
|
29252
|
+
data["url"] = this.url;
|
|
29253
|
+
data["title"] = this.title;
|
|
29254
|
+
data["text"] = this.text;
|
|
29255
|
+
return data;
|
|
29256
|
+
}
|
|
29257
|
+
}
|
|
29258
|
+
|
|
29259
|
+
export interface IAiOverviewReference {
|
|
29260
|
+
/** type of element */
|
|
29261
|
+
type?: string | undefined;
|
|
29262
|
+
/** reference source name or title */
|
|
29263
|
+
source?: string | undefined;
|
|
29264
|
+
/** website domain */
|
|
29265
|
+
domain?: string | undefined;
|
|
29266
|
+
/** URL */
|
|
29267
|
+
url?: string | undefined;
|
|
29268
|
+
/** title of a given link element */
|
|
29269
|
+
title?: string | undefined;
|
|
29270
|
+
/** row content */
|
|
29271
|
+
text?: string | undefined;
|
|
29272
|
+
|
|
29273
|
+
[key: string]: any;
|
|
29274
|
+
}
|
|
29275
|
+
|
|
29276
|
+
export class AiOverviewElement implements IAiOverviewElement {
|
|
29277
|
+
/** type of element */
|
|
29278
|
+
type?: string | undefined;
|
|
29279
|
+
/** title of the element */
|
|
29280
|
+
title?: string | undefined;
|
|
29281
|
+
/** description content */
|
|
29282
|
+
text?: string | undefined;
|
|
29283
|
+
/** images of the element */
|
|
29284
|
+
images?: (ImagesElement | undefined)[] | undefined;
|
|
29285
|
+
/** references relevant to the element */
|
|
29286
|
+
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
29287
|
+
|
|
29288
|
+
[key: string]: any;
|
|
29289
|
+
|
|
29290
|
+
constructor(data?: IAiOverviewElement) {
|
|
29291
|
+
if (data) {
|
|
29292
|
+
for (var property in data) {
|
|
29293
|
+
if (data.hasOwnProperty(property))
|
|
29294
|
+
(<any>this)[property] = (<any>data)[property];
|
|
29295
|
+
}
|
|
29296
|
+
}
|
|
29297
|
+
}
|
|
29298
|
+
|
|
29299
|
+
init(_data?: any) {
|
|
29300
|
+
if (_data) {
|
|
29301
|
+
for (var property in _data) {
|
|
29302
|
+
if (_data.hasOwnProperty(property))
|
|
29303
|
+
this[property] = _data[property];
|
|
29304
|
+
}
|
|
29305
|
+
this.type = _data["type"];
|
|
29306
|
+
this.title = _data["title"];
|
|
29307
|
+
this.text = _data["text"];
|
|
29308
|
+
if (Array.isArray(_data["images"])) {
|
|
29309
|
+
this.images = [] as any;
|
|
29310
|
+
for (let item of _data["images"])
|
|
29311
|
+
this.images!.push(ImagesElement.fromJS(item));
|
|
29312
|
+
}
|
|
29313
|
+
if (Array.isArray(_data["references"])) {
|
|
29314
|
+
this.references = [] as any;
|
|
29315
|
+
for (let item of _data["references"])
|
|
29316
|
+
this.references!.push(AiOverviewReference.fromJS(item));
|
|
29317
|
+
}
|
|
29318
|
+
}
|
|
29319
|
+
}
|
|
29320
|
+
|
|
29321
|
+
static fromJS(data: any): AiOverviewElement {
|
|
29322
|
+
data = typeof data === 'object' ? data : {};
|
|
29323
|
+
let result = new AiOverviewElement();
|
|
29324
|
+
result.init(data);
|
|
29325
|
+
return result;
|
|
29326
|
+
}
|
|
29327
|
+
|
|
29328
|
+
toJSON(data?: any) {
|
|
29329
|
+
data = typeof data === 'object' ? data : {};
|
|
29330
|
+
for (var property in this) {
|
|
29331
|
+
if (this.hasOwnProperty(property))
|
|
29332
|
+
data[property] = this[property];
|
|
29333
|
+
}
|
|
29334
|
+
data["type"] = this.type;
|
|
29335
|
+
data["title"] = this.title;
|
|
29336
|
+
data["text"] = this.text;
|
|
29337
|
+
if (Array.isArray(this.images)) {
|
|
29338
|
+
data["images"] = [];
|
|
29339
|
+
for (let item of this.images)
|
|
29340
|
+
data["images"].push(item?.toJSON());
|
|
29341
|
+
}
|
|
29342
|
+
if (Array.isArray(this.references)) {
|
|
29343
|
+
data["references"] = [];
|
|
29344
|
+
for (let item of this.references)
|
|
29345
|
+
data["references"].push(item?.toJSON());
|
|
29346
|
+
}
|
|
29347
|
+
return data;
|
|
29348
|
+
}
|
|
29349
|
+
}
|
|
29350
|
+
|
|
29351
|
+
export interface IAiOverviewElement {
|
|
29352
|
+
/** type of element */
|
|
29353
|
+
type?: string | undefined;
|
|
29354
|
+
/** title of the element */
|
|
29355
|
+
title?: string | undefined;
|
|
29356
|
+
/** description content */
|
|
29357
|
+
text?: string | undefined;
|
|
29358
|
+
/** images of the element */
|
|
29359
|
+
images?: (ImagesElement | undefined)[] | undefined;
|
|
29360
|
+
/** references relevant to the element */
|
|
29361
|
+
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
29362
|
+
|
|
29363
|
+
[key: string]: any;
|
|
29364
|
+
}
|
|
29365
|
+
|
|
29366
|
+
export class KnowledgeGraphAiOverviewItemSerpElementItem extends BaseSerpElementItem implements IKnowledgeGraphAiOverviewItemSerpElementItem {
|
|
29367
|
+
/** indicates whether the element is loaded asynchronically
|
|
29368
|
+
if true, the ai_overview element is loaded asynchronically;
|
|
29369
|
+
if false, the ai_overview element is loaded from cache; */
|
|
29370
|
+
asynchronous_ai_overview?: boolean | undefined;
|
|
29371
|
+
/** additional items present in the element
|
|
29372
|
+
if there are none, equals null */
|
|
29373
|
+
items?: (AiOverviewElement | undefined)[] | undefined;
|
|
29374
|
+
/** additional references relevant to the item
|
|
29375
|
+
includes references to webpages that may have been used to generate the ai_overview */
|
|
29376
|
+
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
29377
|
+
/** rectangle parameters
|
|
29378
|
+
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
29379
|
+
equals null if calculate_rectangles in the POST request is not set to true */
|
|
29380
|
+
rectangle?: Rectangle | undefined;
|
|
29381
|
+
|
|
29382
|
+
[key: string]: any;
|
|
29383
|
+
|
|
29384
|
+
constructor(data?: IKnowledgeGraphAiOverviewItemSerpElementItem) {
|
|
29385
|
+
super(data);
|
|
29386
|
+
this._discriminator = "knowledge_graph_ai_overview_item";
|
|
29387
|
+
}
|
|
29388
|
+
|
|
29389
|
+
init(_data?: any) {
|
|
29390
|
+
super.init(_data);
|
|
29391
|
+
if (_data) {
|
|
29392
|
+
for (var property in _data) {
|
|
29393
|
+
if (_data.hasOwnProperty(property))
|
|
29394
|
+
this[property] = _data[property];
|
|
29395
|
+
}
|
|
29396
|
+
this.asynchronous_ai_overview = _data["asynchronous_ai_overview"];
|
|
29397
|
+
if (Array.isArray(_data["items"])) {
|
|
29398
|
+
this.items = [] as any;
|
|
29399
|
+
for (let item of _data["items"])
|
|
29400
|
+
this.items!.push(AiOverviewElement.fromJS(item));
|
|
29401
|
+
}
|
|
29402
|
+
if (Array.isArray(_data["references"])) {
|
|
29403
|
+
this.references = [] as any;
|
|
29404
|
+
for (let item of _data["references"])
|
|
29405
|
+
this.references!.push(AiOverviewReference.fromJS(item));
|
|
29406
|
+
}
|
|
29407
|
+
this.rectangle = _data["rectangle"] ? Rectangle.fromJS(_data["rectangle"]) : <any>undefined;
|
|
29408
|
+
}
|
|
29409
|
+
}
|
|
29410
|
+
|
|
29411
|
+
static fromJS(data: any): KnowledgeGraphAiOverviewItemSerpElementItem {
|
|
29412
|
+
data = typeof data === 'object' ? data : {};
|
|
29413
|
+
let result = new KnowledgeGraphAiOverviewItemSerpElementItem();
|
|
29414
|
+
result.init(data);
|
|
29415
|
+
return result;
|
|
29416
|
+
}
|
|
29417
|
+
|
|
29418
|
+
toJSON(data?: any) {
|
|
29419
|
+
data = typeof data === 'object' ? data : {};
|
|
29420
|
+
for (var property in this) {
|
|
29421
|
+
if (this.hasOwnProperty(property))
|
|
29422
|
+
data[property] = this[property];
|
|
29423
|
+
}
|
|
29424
|
+
data["asynchronous_ai_overview"] = this.asynchronous_ai_overview;
|
|
29425
|
+
if (Array.isArray(this.items)) {
|
|
29426
|
+
data["items"] = [];
|
|
29427
|
+
for (let item of this.items)
|
|
29428
|
+
data["items"].push(item?.toJSON());
|
|
29429
|
+
}
|
|
29430
|
+
if (Array.isArray(this.references)) {
|
|
29431
|
+
data["references"] = [];
|
|
29432
|
+
for (let item of this.references)
|
|
29433
|
+
data["references"].push(item?.toJSON());
|
|
29434
|
+
}
|
|
29435
|
+
data["rectangle"] = this.rectangle ? this.rectangle?.toJSON() : <any>undefined;
|
|
29436
|
+
super.toJSON(data);
|
|
29437
|
+
return data;
|
|
29438
|
+
}
|
|
29439
|
+
}
|
|
29440
|
+
|
|
29441
|
+
export interface IKnowledgeGraphAiOverviewItemSerpElementItem extends IBaseSerpElementItem {
|
|
29442
|
+
/** indicates whether the element is loaded asynchronically
|
|
29443
|
+
if true, the ai_overview element is loaded asynchronically;
|
|
29444
|
+
if false, the ai_overview element is loaded from cache; */
|
|
29445
|
+
asynchronous_ai_overview?: boolean | undefined;
|
|
29446
|
+
/** additional items present in the element
|
|
29447
|
+
if there are none, equals null */
|
|
29448
|
+
items?: (AiOverviewElement | undefined)[] | undefined;
|
|
29449
|
+
/** additional references relevant to the item
|
|
29450
|
+
includes references to webpages that may have been used to generate the ai_overview */
|
|
29451
|
+
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
29452
|
+
/** rectangle parameters
|
|
29453
|
+
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
29454
|
+
equals null if calculate_rectangles in the POST request is not set to true */
|
|
29455
|
+
rectangle?: Rectangle | undefined;
|
|
29456
|
+
|
|
29457
|
+
[key: string]: any;
|
|
29458
|
+
}
|
|
29459
|
+
|
|
29185
29460
|
export class KnowledgeGraphSerpElementItem extends BaseSerpElementItem implements IKnowledgeGraphSerpElementItem {
|
|
29186
29461
|
/** title of the result in SERP */
|
|
29187
29462
|
title?: string | undefined;
|
|
@@ -29202,8 +29477,7 @@ the URL leading to the image on the original resource or DataForSEO storage (in
|
|
|
29202
29477
|
unique id of a local establishment;
|
|
29203
29478
|
can be used with Google Reviews API to get a full list of reviews */
|
|
29204
29479
|
cid?: string | undefined;
|
|
29205
|
-
/**
|
|
29206
|
-
if there are none, equals null */
|
|
29480
|
+
/** contains results featured in the ‘hotels_pack’ element of SERP */
|
|
29207
29481
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
29208
29482
|
/** rectangle parameters
|
|
29209
29483
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -29293,8 +29567,7 @@ the URL leading to the image on the original resource or DataForSEO storage (in
|
|
|
29293
29567
|
unique id of a local establishment;
|
|
29294
29568
|
can be used with Google Reviews API to get a full list of reviews */
|
|
29295
29569
|
cid?: string | undefined;
|
|
29296
|
-
/**
|
|
29297
|
-
if there are none, equals null */
|
|
29570
|
+
/** contains results featured in the ‘hotels_pack’ element of SERP */
|
|
29298
29571
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
29299
29572
|
/** rectangle parameters
|
|
29300
29573
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -29311,7 +29584,7 @@ export class AdLinkElement implements IAdLinkElement {
|
|
|
29311
29584
|
title?: string | undefined;
|
|
29312
29585
|
/** description of the results element in SERP */
|
|
29313
29586
|
description?: string | undefined;
|
|
29314
|
-
/** URL */
|
|
29587
|
+
/** URL of element */
|
|
29315
29588
|
url?: string | undefined;
|
|
29316
29589
|
/** domain where a link points */
|
|
29317
29590
|
domain?: string | undefined;
|
|
@@ -29374,7 +29647,7 @@ export interface IAdLinkElement {
|
|
|
29374
29647
|
title?: string | undefined;
|
|
29375
29648
|
/** description of the results element in SERP */
|
|
29376
29649
|
description?: string | undefined;
|
|
29377
|
-
/** URL */
|
|
29650
|
+
/** URL of element */
|
|
29378
29651
|
url?: string | undefined;
|
|
29379
29652
|
/** domain where a link points */
|
|
29380
29653
|
domain?: string | undefined;
|
|
@@ -29387,7 +29660,7 @@ export interface IAdLinkElement {
|
|
|
29387
29660
|
export class FaqBoxElement implements IFaqBoxElement {
|
|
29388
29661
|
/** type of element */
|
|
29389
29662
|
type?: string | undefined;
|
|
29390
|
-
/**
|
|
29663
|
+
/** reference page title */
|
|
29391
29664
|
title?: string | undefined;
|
|
29392
29665
|
/** description */
|
|
29393
29666
|
description?: string | undefined;
|
|
@@ -29450,7 +29723,7 @@ export class FaqBoxElement implements IFaqBoxElement {
|
|
|
29450
29723
|
export interface IFaqBoxElement {
|
|
29451
29724
|
/** type of element */
|
|
29452
29725
|
type?: string | undefined;
|
|
29453
|
-
/**
|
|
29726
|
+
/** reference page title */
|
|
29454
29727
|
title?: string | undefined;
|
|
29455
29728
|
/** description */
|
|
29456
29729
|
description?: string | undefined;
|
|
@@ -29463,7 +29736,8 @@ export interface IFaqBoxElement {
|
|
|
29463
29736
|
export class FaqBox implements IFaqBox {
|
|
29464
29737
|
/** type of element */
|
|
29465
29738
|
type?: string | undefined;
|
|
29466
|
-
/**
|
|
29739
|
+
/** additional items present in the element
|
|
29740
|
+
if there are none, equals null */
|
|
29467
29741
|
items?: (FaqBoxElement | undefined)[] | undefined;
|
|
29468
29742
|
|
|
29469
29743
|
[key: string]: any;
|
|
@@ -29518,7 +29792,8 @@ export class FaqBox implements IFaqBox {
|
|
|
29518
29792
|
export interface IFaqBox {
|
|
29519
29793
|
/** type of element */
|
|
29520
29794
|
type?: string | undefined;
|
|
29521
|
-
/**
|
|
29795
|
+
/** additional items present in the element
|
|
29796
|
+
if there are none, equals null */
|
|
29522
29797
|
items?: (FaqBoxElement | undefined)[] | undefined;
|
|
29523
29798
|
|
|
29524
29799
|
[key: string]: any;
|
|
@@ -29533,7 +29808,7 @@ export class RelatedResult implements IRelatedResult {
|
|
|
29533
29808
|
domain?: string | undefined;
|
|
29534
29809
|
/** title of a given link element */
|
|
29535
29810
|
title?: string | undefined;
|
|
29536
|
-
/**
|
|
29811
|
+
/** reference page URL */
|
|
29537
29812
|
url?: string | undefined;
|
|
29538
29813
|
/** cached version of the page */
|
|
29539
29814
|
cache_url?: string | undefined;
|
|
@@ -29680,7 +29955,7 @@ export interface IRelatedResult {
|
|
|
29680
29955
|
domain?: string | undefined;
|
|
29681
29956
|
/** title of a given link element */
|
|
29682
29957
|
title?: string | undefined;
|
|
29683
|
-
/**
|
|
29958
|
+
/** reference page URL */
|
|
29684
29959
|
url?: string | undefined;
|
|
29685
29960
|
/** cached version of the page */
|
|
29686
29961
|
cache_url?: string | undefined;
|
|
@@ -29748,7 +30023,8 @@ example:
|
|
|
29748
30023
|
timestamp?: string | undefined;
|
|
29749
30024
|
/** URL */
|
|
29750
30025
|
url?: string | undefined;
|
|
29751
|
-
/** URL of the image
|
|
30026
|
+
/** URL of the image
|
|
30027
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
29752
30028
|
image_url?: string | undefined;
|
|
29753
30029
|
/** badges relevant to the element */
|
|
29754
30030
|
badges?: (string | undefined)[] | undefined;
|
|
@@ -29840,7 +30116,8 @@ example:
|
|
|
29840
30116
|
timestamp?: string | undefined;
|
|
29841
30117
|
/** URL */
|
|
29842
30118
|
url?: string | undefined;
|
|
29843
|
-
/** URL of the image
|
|
30119
|
+
/** URL of the image
|
|
30120
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
29844
30121
|
image_url?: string | undefined;
|
|
29845
30122
|
/** badges relevant to the element */
|
|
29846
30123
|
badges?: (string | undefined)[] | undefined;
|
|
@@ -29851,8 +30128,7 @@ example:
|
|
|
29851
30128
|
export class TopStoriesSerpElementItem extends BaseSerpElementItem implements ITopStoriesSerpElementItem {
|
|
29852
30129
|
/** title of the row */
|
|
29853
30130
|
title?: string | undefined;
|
|
29854
|
-
/**
|
|
29855
|
-
if there are none, equals null */
|
|
30131
|
+
/** contains arrays of specific images */
|
|
29856
30132
|
items?: (TopStoriesElement | undefined)[] | undefined;
|
|
29857
30133
|
/** rectangle parameters
|
|
29858
30134
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -29911,8 +30187,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
29911
30187
|
export interface ITopStoriesSerpElementItem extends IBaseSerpElementItem {
|
|
29912
30188
|
/** title of the row */
|
|
29913
30189
|
title?: string | undefined;
|
|
29914
|
-
/**
|
|
29915
|
-
if there are none, equals null */
|
|
30190
|
+
/** contains arrays of specific images */
|
|
29916
30191
|
items?: (TopStoriesElement | undefined)[] | undefined;
|
|
29917
30192
|
/** rectangle parameters
|
|
29918
30193
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -29942,8 +30217,7 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
29942
30217
|
example:
|
|
29943
30218
|
2019-11-15 12:57:46 +00:00 */
|
|
29944
30219
|
timestamp?: string | undefined;
|
|
29945
|
-
/**
|
|
29946
|
-
if there are none, equals null */
|
|
30220
|
+
/** table element */
|
|
29947
30221
|
table?: Table | undefined;
|
|
29948
30222
|
|
|
29949
30223
|
[key: string]: any;
|
|
@@ -30029,8 +30303,7 @@ in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
|
|
|
30029
30303
|
example:
|
|
30030
30304
|
2019-11-15 12:57:46 +00:00 */
|
|
30031
30305
|
timestamp?: string | undefined;
|
|
30032
|
-
/**
|
|
30033
|
-
if there are none, equals null */
|
|
30306
|
+
/** table element */
|
|
30034
30307
|
table?: Table | undefined;
|
|
30035
30308
|
|
|
30036
30309
|
[key: string]: any;
|
|
@@ -30119,8 +30392,7 @@ export interface IPeopleAlsoAskElement {
|
|
|
30119
30392
|
}
|
|
30120
30393
|
|
|
30121
30394
|
export class PeopleAlsoAskSerpElementItem extends BaseSerpElementItem implements IPeopleAlsoAskSerpElementItem {
|
|
30122
|
-
/**
|
|
30123
|
-
if there are none, equals null */
|
|
30395
|
+
/** contains arrays of specific images */
|
|
30124
30396
|
items?: (PeopleAlsoAskElement | undefined)[] | undefined;
|
|
30125
30397
|
/** rectangle parameters
|
|
30126
30398
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30175,8 +30447,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
30175
30447
|
}
|
|
30176
30448
|
|
|
30177
30449
|
export interface IPeopleAlsoAskSerpElementItem extends IBaseSerpElementItem {
|
|
30178
|
-
/**
|
|
30179
|
-
if there are none, equals null */
|
|
30450
|
+
/** contains arrays of specific images */
|
|
30180
30451
|
items?: (PeopleAlsoAskElement | undefined)[] | undefined;
|
|
30181
30452
|
/** rectangle parameters
|
|
30182
30453
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30189,8 +30460,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
30189
30460
|
export class PeopleAlsoSearchSerpElementItem extends BaseSerpElementItem implements IPeopleAlsoSearchSerpElementItem {
|
|
30190
30461
|
/** title of the row */
|
|
30191
30462
|
title?: string | undefined;
|
|
30192
|
-
/**
|
|
30193
|
-
if there are none, equals null */
|
|
30463
|
+
/** contains arrays of specific images */
|
|
30194
30464
|
items?: (string | undefined)[] | undefined;
|
|
30195
30465
|
/** rectangle parameters
|
|
30196
30466
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30249,8 +30519,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
30249
30519
|
export interface IPeopleAlsoSearchSerpElementItem extends IBaseSerpElementItem {
|
|
30250
30520
|
/** title of the row */
|
|
30251
30521
|
title?: string | undefined;
|
|
30252
|
-
/**
|
|
30253
|
-
if there are none, equals null */
|
|
30522
|
+
/** contains arrays of specific images */
|
|
30254
30523
|
items?: (string | undefined)[] | undefined;
|
|
30255
30524
|
/** rectangle parameters
|
|
30256
30525
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30341,8 +30610,7 @@ export class ImagesSerpElementItem extends BaseSerpElementItem implements IImage
|
|
|
30341
30610
|
title?: string | undefined;
|
|
30342
30611
|
/** source URL */
|
|
30343
30612
|
url?: string | undefined;
|
|
30344
|
-
/**
|
|
30345
|
-
if there are none, equals null */
|
|
30613
|
+
/** contains arrays of specific images */
|
|
30346
30614
|
items?: (ImagesElement | undefined)[] | undefined;
|
|
30347
30615
|
/** contains keywords and images related to the specified search term
|
|
30348
30616
|
if there are none, equals null */
|
|
@@ -30418,8 +30686,7 @@ export interface IImagesSerpElementItem extends IBaseSerpElementItem {
|
|
|
30418
30686
|
title?: string | undefined;
|
|
30419
30687
|
/** source URL */
|
|
30420
30688
|
url?: string | undefined;
|
|
30421
|
-
/**
|
|
30422
|
-
if there are none, equals null */
|
|
30689
|
+
/** contains arrays of specific images */
|
|
30423
30690
|
items?: (ImagesElement | undefined)[] | undefined;
|
|
30424
30691
|
/** contains keywords and images related to the specified search term
|
|
30425
30692
|
if there are none, equals null */
|
|
@@ -30517,8 +30784,7 @@ export class TwitterSerpElementItem extends BaseSerpElementItem implements ITwit
|
|
|
30517
30784
|
title?: string | undefined;
|
|
30518
30785
|
/** source URL */
|
|
30519
30786
|
url?: string | undefined;
|
|
30520
|
-
/**
|
|
30521
|
-
if there are none, equals null */
|
|
30787
|
+
/** contains arrays of specific images */
|
|
30522
30788
|
items?: (TwitterElement | undefined)[] | undefined;
|
|
30523
30789
|
/** rectangle parameters
|
|
30524
30790
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30581,8 +30847,7 @@ export interface ITwitterSerpElementItem extends IBaseSerpElementItem {
|
|
|
30581
30847
|
title?: string | undefined;
|
|
30582
30848
|
/** source URL */
|
|
30583
30849
|
url?: string | undefined;
|
|
30584
|
-
/**
|
|
30585
|
-
if there are none, equals null */
|
|
30850
|
+
/** contains arrays of specific images */
|
|
30586
30851
|
items?: (TwitterElement | undefined)[] | undefined;
|
|
30587
30852
|
/** rectangle parameters
|
|
30588
30853
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30785,8 +31050,7 @@ export class JobsSerpElementItem extends BaseSerpElementItem implements IJobsSer
|
|
|
30785
31050
|
title?: string | undefined;
|
|
30786
31051
|
/** source URL */
|
|
30787
31052
|
url?: string | undefined;
|
|
30788
|
-
/**
|
|
30789
|
-
if there are none, equals null */
|
|
31053
|
+
/** contains arrays of specific images */
|
|
30790
31054
|
items?: (JobsElement | undefined)[] | undefined;
|
|
30791
31055
|
/** rectangle parameters
|
|
30792
31056
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30849,8 +31113,7 @@ export interface IJobsSerpElementItem extends IBaseSerpElementItem {
|
|
|
30849
31113
|
title?: string | undefined;
|
|
30850
31114
|
/** source URL */
|
|
30851
31115
|
url?: string | undefined;
|
|
30852
|
-
/**
|
|
30853
|
-
if there are none, equals null */
|
|
31116
|
+
/** contains arrays of specific images */
|
|
30854
31117
|
items?: (JobsElement | undefined)[] | undefined;
|
|
30855
31118
|
/** rectangle parameters
|
|
30856
31119
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -30999,8 +31262,7 @@ export interface IAppElement {
|
|
|
30999
31262
|
}
|
|
31000
31263
|
|
|
31001
31264
|
export class AppSerpElementItem extends BaseSerpElementItem implements IAppSerpElementItem {
|
|
31002
|
-
/**
|
|
31003
|
-
if there are none, equals null */
|
|
31265
|
+
/** contains arrays of specific images */
|
|
31004
31266
|
items?: (AppElement | undefined)[] | undefined;
|
|
31005
31267
|
/** rectangle parameters
|
|
31006
31268
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31055,8 +31317,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
31055
31317
|
}
|
|
31056
31318
|
|
|
31057
31319
|
export interface IAppSerpElementItem extends IBaseSerpElementItem {
|
|
31058
|
-
/**
|
|
31059
|
-
if there are none, equals null */
|
|
31320
|
+
/** contains arrays of specific images */
|
|
31060
31321
|
items?: (AppElement | undefined)[] | undefined;
|
|
31061
31322
|
/** rectangle parameters
|
|
31062
31323
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31175,7 +31436,8 @@ export class CarouselElement implements ICarouselElement {
|
|
|
31175
31436
|
title?: string | undefined;
|
|
31176
31437
|
/** subtitle of the element */
|
|
31177
31438
|
subtitle?: string | undefined;
|
|
31178
|
-
/** URL of the image
|
|
31439
|
+
/** URL of the image
|
|
31440
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
31179
31441
|
image_url?: string | undefined;
|
|
31180
31442
|
|
|
31181
31443
|
[key: string]: any;
|
|
@@ -31230,7 +31492,8 @@ export interface ICarouselElement {
|
|
|
31230
31492
|
title?: string | undefined;
|
|
31231
31493
|
/** subtitle of the element */
|
|
31232
31494
|
subtitle?: string | undefined;
|
|
31233
|
-
/** URL of the image
|
|
31495
|
+
/** URL of the image
|
|
31496
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
31234
31497
|
image_url?: string | undefined;
|
|
31235
31498
|
|
|
31236
31499
|
[key: string]: any;
|
|
@@ -31239,8 +31502,7 @@ export interface ICarouselElement {
|
|
|
31239
31502
|
export class CarouselSerpElementItem extends BaseSerpElementItem implements ICarouselSerpElementItem {
|
|
31240
31503
|
/** title of the row */
|
|
31241
31504
|
title?: string | undefined;
|
|
31242
|
-
/**
|
|
31243
|
-
if there are none, equals null */
|
|
31505
|
+
/** contains arrays of specific images */
|
|
31244
31506
|
items?: (CarouselElement | undefined)[] | undefined;
|
|
31245
31507
|
/** rectangle parameters
|
|
31246
31508
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31299,8 +31561,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
31299
31561
|
export interface ICarouselSerpElementItem extends IBaseSerpElementItem {
|
|
31300
31562
|
/** title of the row */
|
|
31301
31563
|
title?: string | undefined;
|
|
31302
|
-
/**
|
|
31303
|
-
if there are none, equals null */
|
|
31564
|
+
/** contains arrays of specific images */
|
|
31304
31565
|
items?: (CarouselElement | undefined)[] | undefined;
|
|
31305
31566
|
/** rectangle parameters
|
|
31306
31567
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31399,8 +31660,7 @@ example:
|
|
|
31399
31660
|
}
|
|
31400
31661
|
|
|
31401
31662
|
export class VideoSerpElementItem extends BaseSerpElementItem implements IVideoSerpElementItem {
|
|
31402
|
-
/**
|
|
31403
|
-
if there are none, equals null */
|
|
31663
|
+
/** contains arrays of specific images */
|
|
31404
31664
|
items?: (VideoElement | undefined)[] | undefined;
|
|
31405
31665
|
/** rectangle parameters
|
|
31406
31666
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31455,8 +31715,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
31455
31715
|
}
|
|
31456
31716
|
|
|
31457
31717
|
export interface IVideoSerpElementItem extends IBaseSerpElementItem {
|
|
31458
|
-
/**
|
|
31459
|
-
if there are none, equals null */
|
|
31718
|
+
/** contains arrays of specific images */
|
|
31460
31719
|
items?: (VideoElement | undefined)[] | undefined;
|
|
31461
31720
|
/** rectangle parameters
|
|
31462
31721
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31653,8 +31912,7 @@ URL of the page on the marketplace website where the product is hosted */
|
|
|
31653
31912
|
export class ShoppingSerpElementItem extends BaseSerpElementItem implements IShoppingSerpElementItem {
|
|
31654
31913
|
/** title of the row */
|
|
31655
31914
|
title?: string | undefined;
|
|
31656
|
-
/**
|
|
31657
|
-
if there are none, equals null */
|
|
31915
|
+
/** contains arrays of specific images */
|
|
31658
31916
|
items?: (ShoppingElement | undefined)[] | undefined;
|
|
31659
31917
|
/** rectangle parameters
|
|
31660
31918
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31713,8 +31971,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
31713
31971
|
export interface IShoppingSerpElementItem extends IBaseSerpElementItem {
|
|
31714
31972
|
/** title of the row */
|
|
31715
31973
|
title?: string | undefined;
|
|
31716
|
-
/**
|
|
31717
|
-
if there are none, equals null */
|
|
31974
|
+
/** contains arrays of specific images */
|
|
31718
31975
|
items?: (ShoppingElement | undefined)[] | undefined;
|
|
31719
31976
|
/** rectangle parameters
|
|
31720
31977
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31791,8 +32048,7 @@ export class GoogleFlightsSerpElementItem extends BaseSerpElementItem implements
|
|
|
31791
32048
|
title?: string | undefined;
|
|
31792
32049
|
/** source URL */
|
|
31793
32050
|
url?: string | undefined;
|
|
31794
|
-
/**
|
|
31795
|
-
if there are none, equals null */
|
|
32051
|
+
/** contains arrays of specific images */
|
|
31796
32052
|
items?: (GoogleFlightsElement | undefined)[] | undefined;
|
|
31797
32053
|
/** rectangle parameters
|
|
31798
32054
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31855,8 +32111,7 @@ export interface IGoogleFlightsSerpElementItem extends IBaseSerpElementItem {
|
|
|
31855
32111
|
title?: string | undefined;
|
|
31856
32112
|
/** source URL */
|
|
31857
32113
|
url?: string | undefined;
|
|
31858
|
-
/**
|
|
31859
|
-
if there are none, equals null */
|
|
32114
|
+
/** contains arrays of specific images */
|
|
31860
32115
|
items?: (GoogleFlightsElement | undefined)[] | undefined;
|
|
31861
32116
|
/** rectangle parameters
|
|
31862
32117
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -31953,8 +32208,7 @@ the popularity rate based on reviews and displayed in SERP */
|
|
|
31953
32208
|
export class MentionCarouselSerpElementItem extends BaseSerpElementItem implements IMentionCarouselSerpElementItem {
|
|
31954
32209
|
/** title of the row */
|
|
31955
32210
|
title?: string | undefined;
|
|
31956
|
-
/**
|
|
31957
|
-
if there are none, equals null */
|
|
32211
|
+
/** contains arrays of specific images */
|
|
31958
32212
|
items?: (MentionCarouselElement | undefined)[] | undefined;
|
|
31959
32213
|
/** rectangle parameters
|
|
31960
32214
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32013,8 +32267,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32013
32267
|
export interface IMentionCarouselSerpElementItem extends IBaseSerpElementItem {
|
|
32014
32268
|
/** title of the row */
|
|
32015
32269
|
title?: string | undefined;
|
|
32016
|
-
/**
|
|
32017
|
-
if there are none, equals null */
|
|
32270
|
+
/** contains arrays of specific images */
|
|
32018
32271
|
items?: (MentionCarouselElement | undefined)[] | undefined;
|
|
32019
32272
|
/** rectangle parameters
|
|
32020
32273
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32097,8 +32350,7 @@ export class EventsSerpElementItem extends BaseSerpElementItem implements IEvent
|
|
|
32097
32350
|
title?: string | undefined;
|
|
32098
32351
|
/** source URL */
|
|
32099
32352
|
url?: string | undefined;
|
|
32100
|
-
/**
|
|
32101
|
-
if there are none, equals null */
|
|
32353
|
+
/** contains arrays of specific images */
|
|
32102
32354
|
items?: (EventsElement | undefined)[] | undefined;
|
|
32103
32355
|
/** rectangle parameters
|
|
32104
32356
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32161,8 +32413,7 @@ export interface IEventsSerpElementItem extends IBaseSerpElementItem {
|
|
|
32161
32413
|
title?: string | undefined;
|
|
32162
32414
|
/** source URL */
|
|
32163
32415
|
url?: string | undefined;
|
|
32164
|
-
/**
|
|
32165
|
-
if there are none, equals null */
|
|
32416
|
+
/** contains arrays of specific images */
|
|
32166
32417
|
items?: (EventsElement | undefined)[] | undefined;
|
|
32167
32418
|
/** rectangle parameters
|
|
32168
32419
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32173,8 +32424,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32173
32424
|
}
|
|
32174
32425
|
|
|
32175
32426
|
export class RelatedSearchesSerpElementItem extends BaseSerpElementItem implements IRelatedSearchesSerpElementItem {
|
|
32176
|
-
/**
|
|
32177
|
-
if there are none, equals null */
|
|
32427
|
+
/** contains arrays of specific images */
|
|
32178
32428
|
items?: (string | undefined)[] | undefined;
|
|
32179
32429
|
/** rectangle parameters
|
|
32180
32430
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32229,8 +32479,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32229
32479
|
}
|
|
32230
32480
|
|
|
32231
32481
|
export interface IRelatedSearchesSerpElementItem extends IBaseSerpElementItem {
|
|
32232
|
-
/**
|
|
32233
|
-
if there are none, equals null */
|
|
32482
|
+
/** contains arrays of specific images */
|
|
32234
32483
|
items?: (string | undefined)[] | undefined;
|
|
32235
32484
|
/** rectangle parameters
|
|
32236
32485
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32311,8 +32560,7 @@ export interface IMultiCarouselElement {
|
|
|
32311
32560
|
}
|
|
32312
32561
|
|
|
32313
32562
|
export class MultiCarouselSerpElementItem extends BaseSerpElementItem implements IMultiCarouselSerpElementItem {
|
|
32314
|
-
/**
|
|
32315
|
-
if there are none, equals null */
|
|
32563
|
+
/** contains arrays of specific images */
|
|
32316
32564
|
items?: (MultiCarouselElement | undefined)[] | undefined;
|
|
32317
32565
|
/** rectangle parameters
|
|
32318
32566
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32367,8 +32615,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32367
32615
|
}
|
|
32368
32616
|
|
|
32369
32617
|
export interface IMultiCarouselSerpElementItem extends IBaseSerpElementItem {
|
|
32370
|
-
/**
|
|
32371
|
-
if there are none, equals null */
|
|
32618
|
+
/** contains arrays of specific images */
|
|
32372
32619
|
items?: (MultiCarouselElement | undefined)[] | undefined;
|
|
32373
32620
|
/** rectangle parameters
|
|
32374
32621
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32475,8 +32722,7 @@ the popularity rate based on reviews and displayed in SERP */
|
|
|
32475
32722
|
}
|
|
32476
32723
|
|
|
32477
32724
|
export class RecipesSerpElementItem extends BaseSerpElementItem implements IRecipesSerpElementItem {
|
|
32478
|
-
/**
|
|
32479
|
-
if there are none, equals null */
|
|
32725
|
+
/** contains arrays of specific images */
|
|
32480
32726
|
items?: (RecipesElement | undefined)[] | undefined;
|
|
32481
32727
|
/** rectangle parameters
|
|
32482
32728
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32531,8 +32777,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32531
32777
|
}
|
|
32532
32778
|
|
|
32533
32779
|
export interface IRecipesSerpElementItem extends IBaseSerpElementItem {
|
|
32534
|
-
/**
|
|
32535
|
-
if there are none, equals null */
|
|
32780
|
+
/** contains arrays of specific images */
|
|
32536
32781
|
items?: (RecipesElement | undefined)[] | undefined;
|
|
32537
32782
|
/** rectangle parameters
|
|
32538
32783
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32621,8 +32866,7 @@ the popularity rate based on reviews and displayed in SERP */
|
|
|
32621
32866
|
export class TopSightsSerpElementItem extends BaseSerpElementItem implements ITopSightsSerpElementItem {
|
|
32622
32867
|
/** title of the row */
|
|
32623
32868
|
title?: string | undefined;
|
|
32624
|
-
/**
|
|
32625
|
-
if there are none, equals null */
|
|
32869
|
+
/** contains arrays of specific images */
|
|
32626
32870
|
items?: (TopSightsElement | undefined)[] | undefined;
|
|
32627
32871
|
/** rectangle parameters
|
|
32628
32872
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32681,8 +32925,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32681
32925
|
export interface ITopSightsSerpElementItem extends IBaseSerpElementItem {
|
|
32682
32926
|
/** title of the row */
|
|
32683
32927
|
title?: string | undefined;
|
|
32684
|
-
/**
|
|
32685
|
-
if there are none, equals null */
|
|
32928
|
+
/** contains arrays of specific images */
|
|
32686
32929
|
items?: (TopSightsElement | undefined)[] | undefined;
|
|
32687
32930
|
/** rectangle parameters
|
|
32688
32931
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32771,8 +33014,7 @@ export class ScholarlyArticlesSerpElementItem extends BaseSerpElementItem implem
|
|
|
32771
33014
|
title?: string | undefined;
|
|
32772
33015
|
/** source URL */
|
|
32773
33016
|
url?: string | undefined;
|
|
32774
|
-
/**
|
|
32775
|
-
if there are none, equals null */
|
|
33017
|
+
/** contains arrays of specific images */
|
|
32776
33018
|
items?: (ScholarlyArticlesElement | undefined)[] | undefined;
|
|
32777
33019
|
/** rectangle parameters
|
|
32778
33020
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32835,8 +33077,7 @@ export interface IScholarlyArticlesSerpElementItem extends IBaseSerpElementItem
|
|
|
32835
33077
|
title?: string | undefined;
|
|
32836
33078
|
/** source URL */
|
|
32837
33079
|
url?: string | undefined;
|
|
32838
|
-
/**
|
|
32839
|
-
if there are none, equals null */
|
|
33080
|
+
/** contains arrays of specific images */
|
|
32840
33081
|
items?: (ScholarlyArticlesElement | undefined)[] | undefined;
|
|
32841
33082
|
/** rectangle parameters
|
|
32842
33083
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32855,7 +33096,8 @@ export class PopularProductsElement implements IPopularProductsElement {
|
|
|
32855
33096
|
description?: string | undefined;
|
|
32856
33097
|
/** seller of the product */
|
|
32857
33098
|
seller?: string | undefined;
|
|
32858
|
-
/** URL of the image
|
|
33099
|
+
/** URL of the image
|
|
33100
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
32859
33101
|
image_url?: string | undefined;
|
|
32860
33102
|
/** price indicated in the element */
|
|
32861
33103
|
price?: PriceInfo | undefined;
|
|
@@ -32923,7 +33165,8 @@ export interface IPopularProductsElement {
|
|
|
32923
33165
|
description?: string | undefined;
|
|
32924
33166
|
/** seller of the product */
|
|
32925
33167
|
seller?: string | undefined;
|
|
32926
|
-
/** URL of the image
|
|
33168
|
+
/** URL of the image
|
|
33169
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
32927
33170
|
image_url?: string | undefined;
|
|
32928
33171
|
/** price indicated in the element */
|
|
32929
33172
|
price?: PriceInfo | undefined;
|
|
@@ -32937,8 +33180,7 @@ the popularity rate based on reviews and displayed in SERP */
|
|
|
32937
33180
|
export class PopularProductsSerpElementItem extends BaseSerpElementItem implements IPopularProductsSerpElementItem {
|
|
32938
33181
|
/** title of the row */
|
|
32939
33182
|
title?: string | undefined;
|
|
32940
|
-
/**
|
|
32941
|
-
if there are none, equals null */
|
|
33183
|
+
/** contains arrays of specific images */
|
|
32942
33184
|
items?: (PopularProductsElement | undefined)[] | undefined;
|
|
32943
33185
|
/** rectangle parameters
|
|
32944
33186
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -32997,8 +33239,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
32997
33239
|
export interface IPopularProductsSerpElementItem extends IBaseSerpElementItem {
|
|
32998
33240
|
/** title of the row */
|
|
32999
33241
|
title?: string | undefined;
|
|
33000
|
-
/**
|
|
33001
|
-
if there are none, equals null */
|
|
33242
|
+
/** contains arrays of specific images */
|
|
33002
33243
|
items?: (PopularProductsElement | undefined)[] | undefined;
|
|
33003
33244
|
/** rectangle parameters
|
|
33004
33245
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33095,8 +33336,7 @@ example:
|
|
|
33095
33336
|
}
|
|
33096
33337
|
|
|
33097
33338
|
export class PodcastsSerpElementItem extends BaseSerpElementItem implements IPodcastsSerpElementItem {
|
|
33098
|
-
/**
|
|
33099
|
-
if there are none, equals null */
|
|
33339
|
+
/** contains arrays of specific images */
|
|
33100
33340
|
items?: (PodcastsElement | undefined)[] | undefined;
|
|
33101
33341
|
/** rectangle parameters
|
|
33102
33342
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33151,8 +33391,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
33151
33391
|
}
|
|
33152
33392
|
|
|
33153
33393
|
export interface IPodcastsSerpElementItem extends IBaseSerpElementItem {
|
|
33154
|
-
/**
|
|
33155
|
-
if there are none, equals null */
|
|
33394
|
+
/** contains arrays of specific images */
|
|
33156
33395
|
items?: (PodcastsElement | undefined)[] | undefined;
|
|
33157
33396
|
/** rectangle parameters
|
|
33158
33397
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33225,7 +33464,7 @@ export interface IGraphElement {
|
|
|
33225
33464
|
}
|
|
33226
33465
|
|
|
33227
33466
|
export class Graph implements IGraph {
|
|
33228
|
-
/** contains arrays of
|
|
33467
|
+
/** contains arrays of elements available in the list */
|
|
33229
33468
|
items?: (GraphElement | undefined)[] | undefined;
|
|
33230
33469
|
/** previous close data
|
|
33231
33470
|
contains stock price data based on the preceding time period */
|
|
@@ -33289,7 +33528,7 @@ contains stock price data based on the preceding time period */
|
|
|
33289
33528
|
}
|
|
33290
33529
|
|
|
33291
33530
|
export interface IGraph {
|
|
33292
|
-
/** contains arrays of
|
|
33531
|
+
/** contains arrays of elements available in the list */
|
|
33293
33532
|
items?: (GraphElement | undefined)[] | undefined;
|
|
33294
33533
|
/** previous close data
|
|
33295
33534
|
contains stock price data based on the preceding time period */
|
|
@@ -33479,8 +33718,7 @@ indicates the source of information included in the top_stories_element */
|
|
|
33479
33718
|
}
|
|
33480
33719
|
|
|
33481
33720
|
export class FindResultsOnSerpElementItem extends BaseSerpElementItem implements IFindResultsOnSerpElementItem {
|
|
33482
|
-
/**
|
|
33483
|
-
if there are none, equals null */
|
|
33721
|
+
/** contains arrays of specific images */
|
|
33484
33722
|
items?: (ShortVideosElement | undefined)[] | undefined;
|
|
33485
33723
|
/** rectangle parameters
|
|
33486
33724
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33535,8 +33773,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
33535
33773
|
}
|
|
33536
33774
|
|
|
33537
33775
|
export interface IFindResultsOnSerpElementItem extends IBaseSerpElementItem {
|
|
33538
|
-
/**
|
|
33539
|
-
if there are none, equals null */
|
|
33776
|
+
/** contains arrays of specific images */
|
|
33540
33777
|
items?: (ShortVideosElement | undefined)[] | undefined;
|
|
33541
33778
|
/** rectangle parameters
|
|
33542
33779
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33635,8 +33872,7 @@ indicates the source of information included in the top_stories_element */
|
|
|
33635
33872
|
}
|
|
33636
33873
|
|
|
33637
33874
|
export class QuestionsAndAnswersSerpElementItem extends BaseSerpElementItem implements IQuestionsAndAnswersSerpElementItem {
|
|
33638
|
-
/**
|
|
33639
|
-
if there are none, equals null */
|
|
33875
|
+
/** contains arrays of specific images */
|
|
33640
33876
|
items?: (QuestionsAndAnswersElement | undefined)[] | undefined;
|
|
33641
33877
|
/** rectangle parameters
|
|
33642
33878
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33691,8 +33927,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
33691
33927
|
}
|
|
33692
33928
|
|
|
33693
33929
|
export interface IQuestionsAndAnswersSerpElementItem extends IBaseSerpElementItem {
|
|
33694
|
-
/**
|
|
33695
|
-
if there are none, equals null */
|
|
33930
|
+
/** contains arrays of specific images */
|
|
33696
33931
|
items?: (QuestionsAndAnswersElement | undefined)[] | undefined;
|
|
33697
33932
|
/** rectangle parameters
|
|
33698
33933
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33819,8 +34054,7 @@ in the format “year-month-date”
|
|
|
33819
34054
|
example:
|
|
33820
34055
|
2019-11-17 */
|
|
33821
34056
|
date_to?: string | undefined;
|
|
33822
|
-
/**
|
|
33823
|
-
if there are none, equals null */
|
|
34057
|
+
/** contains arrays of specific images */
|
|
33824
34058
|
items?: (HotelsPackElement | undefined)[] | undefined;
|
|
33825
34059
|
/** rectangle parameters
|
|
33826
34060
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33893,8 +34127,7 @@ in the format “year-month-date”
|
|
|
33893
34127
|
example:
|
|
33894
34128
|
2019-11-17 */
|
|
33895
34129
|
date_to?: string | undefined;
|
|
33896
|
-
/**
|
|
33897
|
-
if there are none, equals null */
|
|
34130
|
+
/** contains arrays of specific images */
|
|
33898
34131
|
items?: (HotelsPackElement | undefined)[] | undefined;
|
|
33899
34132
|
/** rectangle parameters
|
|
33900
34133
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -33973,8 +34206,7 @@ export interface ILicensesElement {
|
|
|
33973
34206
|
}
|
|
33974
34207
|
|
|
33975
34208
|
export class VisualStoriesSerpElementItem extends BaseSerpElementItem implements IVisualStoriesSerpElementItem {
|
|
33976
|
-
/**
|
|
33977
|
-
if there are none, equals null */
|
|
34209
|
+
/** contains arrays of specific images */
|
|
33978
34210
|
items?: (LicensesElement | undefined)[] | undefined;
|
|
33979
34211
|
/** rectangle parameters
|
|
33980
34212
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34029,8 +34261,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
34029
34261
|
}
|
|
34030
34262
|
|
|
34031
34263
|
export interface IVisualStoriesSerpElementItem extends IBaseSerpElementItem {
|
|
34032
|
-
/**
|
|
34033
|
-
if there are none, equals null */
|
|
34264
|
+
/** contains arrays of specific images */
|
|
34034
34265
|
items?: (LicensesElement | undefined)[] | undefined;
|
|
34035
34266
|
/** rectangle parameters
|
|
34036
34267
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34133,8 +34364,7 @@ the popularity rate based on reviews and displayed in SERP */
|
|
|
34133
34364
|
export class CommercialUnitsSerpElementItem extends BaseSerpElementItem implements ICommercialUnitsSerpElementItem {
|
|
34134
34365
|
/** title of the row */
|
|
34135
34366
|
title?: string | undefined;
|
|
34136
|
-
/**
|
|
34137
|
-
if there are none, equals null */
|
|
34367
|
+
/** contains arrays of specific images */
|
|
34138
34368
|
items?: (CommercialUnitsElement | undefined)[] | undefined;
|
|
34139
34369
|
/** rectangle parameters
|
|
34140
34370
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34193,8 +34423,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
34193
34423
|
export interface ICommercialUnitsSerpElementItem extends IBaseSerpElementItem {
|
|
34194
34424
|
/** title of the row */
|
|
34195
34425
|
title?: string | undefined;
|
|
34196
|
-
/**
|
|
34197
|
-
if there are none, equals null */
|
|
34426
|
+
/** contains arrays of specific images */
|
|
34198
34427
|
items?: (CommercialUnitsElement | undefined)[] | undefined;
|
|
34199
34428
|
/** rectangle parameters
|
|
34200
34429
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34299,8 +34528,7 @@ export class LocalServicesSerpElementItem extends BaseSerpElementItem implements
|
|
|
34299
34528
|
url?: string | undefined;
|
|
34300
34529
|
/** source domain */
|
|
34301
34530
|
domain?: string | undefined;
|
|
34302
|
-
/**
|
|
34303
|
-
if there are none, equals null */
|
|
34531
|
+
/** contains arrays of specific images */
|
|
34304
34532
|
items?: (LocalServicesElement | undefined)[] | undefined;
|
|
34305
34533
|
/** rectangle parameters
|
|
34306
34534
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34367,8 +34595,7 @@ export interface ILocalServicesSerpElementItem extends IBaseSerpElementItem {
|
|
|
34367
34595
|
url?: string | undefined;
|
|
34368
34596
|
/** source domain */
|
|
34369
34597
|
domain?: string | undefined;
|
|
34370
|
-
/**
|
|
34371
|
-
if there are none, equals null */
|
|
34598
|
+
/** contains arrays of specific images */
|
|
34372
34599
|
items?: (LocalServicesElement | undefined)[] | undefined;
|
|
34373
34600
|
/** rectangle parameters
|
|
34374
34601
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -34600,8 +34827,7 @@ export class MathSolverSerpElementItem extends BaseSerpElementItem implements IM
|
|
|
34600
34827
|
/** solution to the equation
|
|
34601
34828
|
solution to the mathematical equation specified in the keyword field when setting a task */
|
|
34602
34829
|
result?: string | undefined;
|
|
34603
|
-
/**
|
|
34604
|
-
if there are none, equals null */
|
|
34830
|
+
/** contains arrays of specific images */
|
|
34605
34831
|
items?: (MathSolverElement | undefined)[] | undefined;
|
|
34606
34832
|
/** link of the element */
|
|
34607
34833
|
links?: (LinkElement | undefined)[] | undefined;
|
|
@@ -34677,8 +34903,7 @@ export interface IMathSolverSerpElementItem extends IBaseSerpElementItem {
|
|
|
34677
34903
|
/** solution to the equation
|
|
34678
34904
|
solution to the mathematical equation specified in the keyword field when setting a task */
|
|
34679
34905
|
result?: string | undefined;
|
|
34680
|
-
/**
|
|
34681
|
-
if there are none, equals null */
|
|
34906
|
+
/** contains arrays of specific images */
|
|
34682
34907
|
items?: (MathSolverElement | undefined)[] | undefined;
|
|
34683
34908
|
/** link of the element */
|
|
34684
34909
|
links?: (LinkElement | undefined)[] | undefined;
|
|
@@ -35063,8 +35288,7 @@ the category is indicated just above the title fo the consideration element */
|
|
|
35063
35288
|
export class ProductConsiderationsSerpElementItem extends BaseSerpElementItem implements IProductConsiderationsSerpElementItem {
|
|
35064
35289
|
/** title of the row */
|
|
35065
35290
|
title?: string | undefined;
|
|
35066
|
-
/**
|
|
35067
|
-
if there are none, equals null */
|
|
35291
|
+
/** contains arrays of specific images */
|
|
35068
35292
|
items?: (ProductConsiderationsElement | undefined)[] | undefined;
|
|
35069
35293
|
/** rectangle parameters
|
|
35070
35294
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35123,8 +35347,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35123
35347
|
export interface IProductConsiderationsSerpElementItem extends IBaseSerpElementItem {
|
|
35124
35348
|
/** title of the row */
|
|
35125
35349
|
title?: string | undefined;
|
|
35126
|
-
/**
|
|
35127
|
-
if there are none, equals null */
|
|
35350
|
+
/** contains arrays of specific images */
|
|
35128
35351
|
items?: (ProductConsiderationsElement | undefined)[] | undefined;
|
|
35129
35352
|
/** rectangle parameters
|
|
35130
35353
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35207,8 +35430,7 @@ export class FoundOnWebSerpElementItem extends BaseSerpElementItem implements IF
|
|
|
35207
35430
|
title?: string | undefined;
|
|
35208
35431
|
/** search queries related to the elment */
|
|
35209
35432
|
related_searches?: (string | undefined)[] | undefined;
|
|
35210
|
-
/**
|
|
35211
|
-
if there are none, equals null */
|
|
35433
|
+
/** contains arrays of specific images */
|
|
35212
35434
|
items?: (FoundOnWebElement | undefined)[] | undefined;
|
|
35213
35435
|
/** rectangle parameters
|
|
35214
35436
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35279,8 +35501,7 @@ export interface IFoundOnWebSerpElementItem extends IBaseSerpElementItem {
|
|
|
35279
35501
|
title?: string | undefined;
|
|
35280
35502
|
/** search queries related to the elment */
|
|
35281
35503
|
related_searches?: (string | undefined)[] | undefined;
|
|
35282
|
-
/**
|
|
35283
|
-
if there are none, equals null */
|
|
35504
|
+
/** contains arrays of specific images */
|
|
35284
35505
|
items?: (FoundOnWebElement | undefined)[] | undefined;
|
|
35285
35506
|
/** rectangle parameters
|
|
35286
35507
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35293,8 +35514,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35293
35514
|
export class ShortVideosSerpElementItem extends BaseSerpElementItem implements IShortVideosSerpElementItem {
|
|
35294
35515
|
/** title of the row */
|
|
35295
35516
|
title?: string | undefined;
|
|
35296
|
-
/**
|
|
35297
|
-
if there are none, equals null */
|
|
35517
|
+
/** contains arrays of specific images */
|
|
35298
35518
|
items?: (ShortVideosElement | undefined)[] | undefined;
|
|
35299
35519
|
/** rectangle parameters
|
|
35300
35520
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35353,8 +35573,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35353
35573
|
export interface IShortVideosSerpElementItem extends IBaseSerpElementItem {
|
|
35354
35574
|
/** title of the row */
|
|
35355
35575
|
title?: string | undefined;
|
|
35356
|
-
/**
|
|
35357
|
-
if there are none, equals null */
|
|
35576
|
+
/** contains arrays of specific images */
|
|
35358
35577
|
items?: (ShortVideosElement | undefined)[] | undefined;
|
|
35359
35578
|
/** rectangle parameters
|
|
35360
35579
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35369,7 +35588,8 @@ export class RefineProductsElement implements IRefineProductsElement {
|
|
|
35369
35588
|
type?: string | undefined;
|
|
35370
35589
|
/** title of a given link element */
|
|
35371
35590
|
title?: string | undefined;
|
|
35372
|
-
/** URL of the image
|
|
35591
|
+
/** URL of the image
|
|
35592
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
35373
35593
|
image_url?: string | undefined;
|
|
35374
35594
|
/** keyword for the related refined search */
|
|
35375
35595
|
keyword?: string | undefined;
|
|
@@ -35432,7 +35652,8 @@ export interface IRefineProductsElement {
|
|
|
35432
35652
|
type?: string | undefined;
|
|
35433
35653
|
/** title of a given link element */
|
|
35434
35654
|
title?: string | undefined;
|
|
35435
|
-
/** URL of the image
|
|
35655
|
+
/** URL of the image
|
|
35656
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
35436
35657
|
image_url?: string | undefined;
|
|
35437
35658
|
/** keyword for the related refined search */
|
|
35438
35659
|
keyword?: string | undefined;
|
|
@@ -35447,8 +35668,7 @@ export interface IRefineProductsElement {
|
|
|
35447
35668
|
export class RefineProductsSerpElementItem extends BaseSerpElementItem implements IRefineProductsSerpElementItem {
|
|
35448
35669
|
/** title of the row */
|
|
35449
35670
|
title?: string | undefined;
|
|
35450
|
-
/**
|
|
35451
|
-
if there are none, equals null */
|
|
35671
|
+
/** contains arrays of specific images */
|
|
35452
35672
|
items?: (RefineProductsElement | undefined)[] | undefined;
|
|
35453
35673
|
/** rectangle parameters
|
|
35454
35674
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35507,8 +35727,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35507
35727
|
export interface IRefineProductsSerpElementItem extends IBaseSerpElementItem {
|
|
35508
35728
|
/** title of the row */
|
|
35509
35729
|
title?: string | undefined;
|
|
35510
|
-
/**
|
|
35511
|
-
if there are none, equals null */
|
|
35730
|
+
/** contains arrays of specific images */
|
|
35512
35731
|
items?: (RefineProductsElement | undefined)[] | undefined;
|
|
35513
35732
|
/** rectangle parameters
|
|
35514
35733
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35529,7 +35748,8 @@ export class ExploreBrandsElement implements IExploreBrandsElement {
|
|
|
35529
35748
|
domain?: string | undefined;
|
|
35530
35749
|
/** description */
|
|
35531
35750
|
description?: string | undefined;
|
|
35532
|
-
/** URL of the image
|
|
35751
|
+
/** URL of the image
|
|
35752
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
35533
35753
|
image_url?: string | undefined;
|
|
35534
35754
|
/** the XPath of the element */
|
|
35535
35755
|
xpath?: string | undefined;
|
|
@@ -35596,7 +35816,8 @@ export interface IExploreBrandsElement {
|
|
|
35596
35816
|
domain?: string | undefined;
|
|
35597
35817
|
/** description */
|
|
35598
35818
|
description?: string | undefined;
|
|
35599
|
-
/** URL of the image
|
|
35819
|
+
/** URL of the image
|
|
35820
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
35600
35821
|
image_url?: string | undefined;
|
|
35601
35822
|
/** the XPath of the element */
|
|
35602
35823
|
xpath?: string | undefined;
|
|
@@ -35607,8 +35828,7 @@ export interface IExploreBrandsElement {
|
|
|
35607
35828
|
export class ExploreBrandsSerpElementItem extends BaseSerpElementItem implements IExploreBrandsSerpElementItem {
|
|
35608
35829
|
/** title of the row */
|
|
35609
35830
|
title?: string | undefined;
|
|
35610
|
-
/**
|
|
35611
|
-
if there are none, equals null */
|
|
35831
|
+
/** contains arrays of specific images */
|
|
35612
35832
|
items?: (ExploreBrandsElement | undefined)[] | undefined;
|
|
35613
35833
|
/** rectangle parameters
|
|
35614
35834
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35667,8 +35887,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35667
35887
|
export interface IExploreBrandsSerpElementItem extends IBaseSerpElementItem {
|
|
35668
35888
|
/** title of the row */
|
|
35669
35889
|
title?: string | undefined;
|
|
35670
|
-
/**
|
|
35671
|
-
if there are none, equals null */
|
|
35890
|
+
/** contains arrays of specific images */
|
|
35672
35891
|
items?: (ExploreBrandsElement | undefined)[] | undefined;
|
|
35673
35892
|
/** rectangle parameters
|
|
35674
35893
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35781,8 +36000,7 @@ example:
|
|
|
35781
36000
|
export class PerspectivesSerpElementItem extends BaseSerpElementItem implements IPerspectivesSerpElementItem {
|
|
35782
36001
|
/** title of the row */
|
|
35783
36002
|
title?: string | undefined;
|
|
35784
|
-
/**
|
|
35785
|
-
if there are none, equals null */
|
|
36003
|
+
/** contains arrays of specific images */
|
|
35786
36004
|
items?: (PerspectivesElement | undefined)[] | undefined;
|
|
35787
36005
|
/** rectangle parameters
|
|
35788
36006
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35841,8 +36059,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
35841
36059
|
export interface IPerspectivesSerpElementItem extends IBaseSerpElementItem {
|
|
35842
36060
|
/** title of the row */
|
|
35843
36061
|
title?: string | undefined;
|
|
35844
|
-
/**
|
|
35845
|
-
if there are none, equals null */
|
|
36062
|
+
/** contains arrays of specific images */
|
|
35846
36063
|
items?: (PerspectivesElement | undefined)[] | undefined;
|
|
35847
36064
|
/** rectangle parameters
|
|
35848
36065
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -35955,8 +36172,7 @@ example:
|
|
|
35955
36172
|
export class DiscussionsAndForumsSerpElementItem extends BaseSerpElementItem implements IDiscussionsAndForumsSerpElementItem {
|
|
35956
36173
|
/** title of the row */
|
|
35957
36174
|
title?: string | undefined;
|
|
35958
|
-
/**
|
|
35959
|
-
if there are none, equals null */
|
|
36175
|
+
/** contains arrays of specific images */
|
|
35960
36176
|
items?: (DiscussionsAndForumsElement | undefined)[] | undefined;
|
|
35961
36177
|
/** rectangle parameters
|
|
35962
36178
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36015,8 +36231,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
36015
36231
|
export interface IDiscussionsAndForumsSerpElementItem extends IBaseSerpElementItem {
|
|
36016
36232
|
/** title of the row */
|
|
36017
36233
|
title?: string | undefined;
|
|
36018
|
-
/**
|
|
36019
|
-
if there are none, equals null */
|
|
36234
|
+
/** contains arrays of specific images */
|
|
36020
36235
|
items?: (DiscussionsAndForumsElement | undefined)[] | undefined;
|
|
36021
36236
|
/** rectangle parameters
|
|
36022
36237
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36035,7 +36250,8 @@ export class CompareSitesElement implements ICompareSitesElement {
|
|
|
36035
36250
|
url?: string | undefined;
|
|
36036
36251
|
/** website domain */
|
|
36037
36252
|
domain?: string | undefined;
|
|
36038
|
-
/** URL of the image
|
|
36253
|
+
/** URL of the image
|
|
36254
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
36039
36255
|
image_url?: string | undefined;
|
|
36040
36256
|
/** source of the element
|
|
36041
36257
|
indicates the source of information included in the top_stories_element */
|
|
@@ -36099,7 +36315,8 @@ export interface ICompareSitesElement {
|
|
|
36099
36315
|
url?: string | undefined;
|
|
36100
36316
|
/** website domain */
|
|
36101
36317
|
domain?: string | undefined;
|
|
36102
|
-
/** URL of the image
|
|
36318
|
+
/** URL of the image
|
|
36319
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
36103
36320
|
image_url?: string | undefined;
|
|
36104
36321
|
/** source of the element
|
|
36105
36322
|
indicates the source of information included in the top_stories_element */
|
|
@@ -36111,8 +36328,7 @@ indicates the source of information included in the top_stories_element */
|
|
|
36111
36328
|
export class CompareSitesSerpElementItem extends BaseSerpElementItem implements ICompareSitesSerpElementItem {
|
|
36112
36329
|
/** title of the row */
|
|
36113
36330
|
title?: string | undefined;
|
|
36114
|
-
/**
|
|
36115
|
-
if there are none, equals null */
|
|
36331
|
+
/** contains arrays of specific images */
|
|
36116
36332
|
items?: (CompareSitesElement | undefined)[] | undefined;
|
|
36117
36333
|
/** rectangle parameters
|
|
36118
36334
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36171,8 +36387,7 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
36171
36387
|
export interface ICompareSitesSerpElementItem extends IBaseSerpElementItem {
|
|
36172
36388
|
/** title of the row */
|
|
36173
36389
|
title?: string | undefined;
|
|
36174
|
-
/**
|
|
36175
|
-
if there are none, equals null */
|
|
36390
|
+
/** contains arrays of specific images */
|
|
36176
36391
|
items?: (CompareSitesElement | undefined)[] | undefined;
|
|
36177
36392
|
/** rectangle parameters
|
|
36178
36393
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36198,7 +36413,8 @@ indicates the source of information included in the top_stories_element */
|
|
|
36198
36413
|
description?: string | undefined;
|
|
36199
36414
|
/** the date when the page source of the element was published */
|
|
36200
36415
|
date?: string | undefined;
|
|
36201
|
-
/** URL of the image
|
|
36416
|
+
/** URL of the image
|
|
36417
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
36202
36418
|
image_url?: string | undefined;
|
|
36203
36419
|
/** the item’s rating
|
|
36204
36420
|
the popularity rate based on reviews and displayed in SERP */
|
|
@@ -36275,7 +36491,8 @@ indicates the source of information included in the top_stories_element */
|
|
|
36275
36491
|
description?: string | undefined;
|
|
36276
36492
|
/** the date when the page source of the element was published */
|
|
36277
36493
|
date?: string | undefined;
|
|
36278
|
-
/** URL of the image
|
|
36494
|
+
/** URL of the image
|
|
36495
|
+
the URL leading to the image on the original resource or DataForSEO storage (in case the original source is not available) */
|
|
36279
36496
|
image_url?: string | undefined;
|
|
36280
36497
|
/** the item’s rating
|
|
36281
36498
|
the popularity rate based on reviews and displayed in SERP */
|
|
@@ -36290,8 +36507,7 @@ export class CoursesSerpElementItem extends BaseSerpElementItem implements ICour
|
|
|
36290
36507
|
/** array of course categories
|
|
36291
36508
|
contains a list of categories relevant to courses */
|
|
36292
36509
|
categories?: (string | undefined)[] | undefined;
|
|
36293
|
-
/**
|
|
36294
|
-
if there are none, equals null */
|
|
36510
|
+
/** contains arrays of specific images */
|
|
36295
36511
|
items?: (CoursesElement | undefined)[] | undefined;
|
|
36296
36512
|
/** rectangle parameters
|
|
36297
36513
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36363,8 +36579,7 @@ export interface ICoursesSerpElementItem extends IBaseSerpElementItem {
|
|
|
36363
36579
|
/** array of course categories
|
|
36364
36580
|
contains a list of categories relevant to courses */
|
|
36365
36581
|
categories?: (string | undefined)[] | undefined;
|
|
36366
|
-
/**
|
|
36367
|
-
if there are none, equals null */
|
|
36582
|
+
/** contains arrays of specific images */
|
|
36368
36583
|
items?: (CoursesElement | undefined)[] | undefined;
|
|
36369
36584
|
/** rectangle parameters
|
|
36370
36585
|
contains cartesian coordinates and pixel dimensions of the result’s snippet in SERP
|
|
@@ -36374,193 +36589,12 @@ equals null if calculate_rectangles in the POST request is not set to true */
|
|
|
36374
36589
|
[key: string]: any;
|
|
36375
36590
|
}
|
|
36376
36591
|
|
|
36377
|
-
export class AiOverviewReference implements IAiOverviewReference {
|
|
36378
|
-
/** type of element */
|
|
36379
|
-
type?: string | undefined;
|
|
36380
|
-
/** source of the element
|
|
36381
|
-
indicates the source of information included in the questions_and_answers_element */
|
|
36382
|
-
source?: string | undefined;
|
|
36383
|
-
/** domain in SERP */
|
|
36384
|
-
domain?: string | undefined;
|
|
36385
|
-
/** URL */
|
|
36386
|
-
url?: string | undefined;
|
|
36387
|
-
/** title of a given shopping element */
|
|
36388
|
-
title?: string | undefined;
|
|
36389
|
-
/** reference text
|
|
36390
|
-
text snippet from the page that was used to generate the ai_overview_element */
|
|
36391
|
-
text?: string | undefined;
|
|
36392
|
-
|
|
36393
|
-
[key: string]: any;
|
|
36394
|
-
|
|
36395
|
-
constructor(data?: IAiOverviewReference) {
|
|
36396
|
-
if (data) {
|
|
36397
|
-
for (var property in data) {
|
|
36398
|
-
if (data.hasOwnProperty(property))
|
|
36399
|
-
(<any>this)[property] = (<any>data)[property];
|
|
36400
|
-
}
|
|
36401
|
-
}
|
|
36402
|
-
}
|
|
36403
|
-
|
|
36404
|
-
init(_data?: any) {
|
|
36405
|
-
if (_data) {
|
|
36406
|
-
for (var property in _data) {
|
|
36407
|
-
if (_data.hasOwnProperty(property))
|
|
36408
|
-
this[property] = _data[property];
|
|
36409
|
-
}
|
|
36410
|
-
this.type = _data["type"];
|
|
36411
|
-
this.source = _data["source"];
|
|
36412
|
-
this.domain = _data["domain"];
|
|
36413
|
-
this.url = _data["url"];
|
|
36414
|
-
this.title = _data["title"];
|
|
36415
|
-
this.text = _data["text"];
|
|
36416
|
-
}
|
|
36417
|
-
}
|
|
36418
|
-
|
|
36419
|
-
static fromJS(data: any): AiOverviewReference {
|
|
36420
|
-
data = typeof data === 'object' ? data : {};
|
|
36421
|
-
let result = new AiOverviewReference();
|
|
36422
|
-
result.init(data);
|
|
36423
|
-
return result;
|
|
36424
|
-
}
|
|
36425
|
-
|
|
36426
|
-
toJSON(data?: any) {
|
|
36427
|
-
data = typeof data === 'object' ? data : {};
|
|
36428
|
-
for (var property in this) {
|
|
36429
|
-
if (this.hasOwnProperty(property))
|
|
36430
|
-
data[property] = this[property];
|
|
36431
|
-
}
|
|
36432
|
-
data["type"] = this.type;
|
|
36433
|
-
data["source"] = this.source;
|
|
36434
|
-
data["domain"] = this.domain;
|
|
36435
|
-
data["url"] = this.url;
|
|
36436
|
-
data["title"] = this.title;
|
|
36437
|
-
data["text"] = this.text;
|
|
36438
|
-
return data;
|
|
36439
|
-
}
|
|
36440
|
-
}
|
|
36441
|
-
|
|
36442
|
-
export interface IAiOverviewReference {
|
|
36443
|
-
/** type of element */
|
|
36444
|
-
type?: string | undefined;
|
|
36445
|
-
/** source of the element
|
|
36446
|
-
indicates the source of information included in the questions_and_answers_element */
|
|
36447
|
-
source?: string | undefined;
|
|
36448
|
-
/** domain in SERP */
|
|
36449
|
-
domain?: string | undefined;
|
|
36450
|
-
/** URL */
|
|
36451
|
-
url?: string | undefined;
|
|
36452
|
-
/** title of a given shopping element */
|
|
36453
|
-
title?: string | undefined;
|
|
36454
|
-
/** reference text
|
|
36455
|
-
text snippet from the page that was used to generate the ai_overview_element */
|
|
36456
|
-
text?: string | undefined;
|
|
36457
|
-
|
|
36458
|
-
[key: string]: any;
|
|
36459
|
-
}
|
|
36460
|
-
|
|
36461
|
-
export class AiOverviewElement implements IAiOverviewElement {
|
|
36462
|
-
/** type of element */
|
|
36463
|
-
type?: string | undefined;
|
|
36464
|
-
/** title of a given link element */
|
|
36465
|
-
title?: string | undefined;
|
|
36466
|
-
/** reference text
|
|
36467
|
-
text snippet from the page that was used to generate the ai_overview_element */
|
|
36468
|
-
text?: string | undefined;
|
|
36469
|
-
/** images of the element
|
|
36470
|
-
if there are none, equals null */
|
|
36471
|
-
images?: (ImagesElement | undefined)[] | undefined;
|
|
36472
|
-
/** references relevant to the element
|
|
36473
|
-
includes references to webpages that were used to generate the ai_overview_element */
|
|
36474
|
-
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
36475
|
-
|
|
36476
|
-
[key: string]: any;
|
|
36477
|
-
|
|
36478
|
-
constructor(data?: IAiOverviewElement) {
|
|
36479
|
-
if (data) {
|
|
36480
|
-
for (var property in data) {
|
|
36481
|
-
if (data.hasOwnProperty(property))
|
|
36482
|
-
(<any>this)[property] = (<any>data)[property];
|
|
36483
|
-
}
|
|
36484
|
-
}
|
|
36485
|
-
}
|
|
36486
|
-
|
|
36487
|
-
init(_data?: any) {
|
|
36488
|
-
if (_data) {
|
|
36489
|
-
for (var property in _data) {
|
|
36490
|
-
if (_data.hasOwnProperty(property))
|
|
36491
|
-
this[property] = _data[property];
|
|
36492
|
-
}
|
|
36493
|
-
this.type = _data["type"];
|
|
36494
|
-
this.title = _data["title"];
|
|
36495
|
-
this.text = _data["text"];
|
|
36496
|
-
if (Array.isArray(_data["images"])) {
|
|
36497
|
-
this.images = [] as any;
|
|
36498
|
-
for (let item of _data["images"])
|
|
36499
|
-
this.images!.push(ImagesElement.fromJS(item));
|
|
36500
|
-
}
|
|
36501
|
-
if (Array.isArray(_data["references"])) {
|
|
36502
|
-
this.references = [] as any;
|
|
36503
|
-
for (let item of _data["references"])
|
|
36504
|
-
this.references!.push(AiOverviewReference.fromJS(item));
|
|
36505
|
-
}
|
|
36506
|
-
}
|
|
36507
|
-
}
|
|
36508
|
-
|
|
36509
|
-
static fromJS(data: any): AiOverviewElement {
|
|
36510
|
-
data = typeof data === 'object' ? data : {};
|
|
36511
|
-
let result = new AiOverviewElement();
|
|
36512
|
-
result.init(data);
|
|
36513
|
-
return result;
|
|
36514
|
-
}
|
|
36515
|
-
|
|
36516
|
-
toJSON(data?: any) {
|
|
36517
|
-
data = typeof data === 'object' ? data : {};
|
|
36518
|
-
for (var property in this) {
|
|
36519
|
-
if (this.hasOwnProperty(property))
|
|
36520
|
-
data[property] = this[property];
|
|
36521
|
-
}
|
|
36522
|
-
data["type"] = this.type;
|
|
36523
|
-
data["title"] = this.title;
|
|
36524
|
-
data["text"] = this.text;
|
|
36525
|
-
if (Array.isArray(this.images)) {
|
|
36526
|
-
data["images"] = [];
|
|
36527
|
-
for (let item of this.images)
|
|
36528
|
-
data["images"].push(item?.toJSON());
|
|
36529
|
-
}
|
|
36530
|
-
if (Array.isArray(this.references)) {
|
|
36531
|
-
data["references"] = [];
|
|
36532
|
-
for (let item of this.references)
|
|
36533
|
-
data["references"].push(item?.toJSON());
|
|
36534
|
-
}
|
|
36535
|
-
return data;
|
|
36536
|
-
}
|
|
36537
|
-
}
|
|
36538
|
-
|
|
36539
|
-
export interface IAiOverviewElement {
|
|
36540
|
-
/** type of element */
|
|
36541
|
-
type?: string | undefined;
|
|
36542
|
-
/** title of a given link element */
|
|
36543
|
-
title?: string | undefined;
|
|
36544
|
-
/** reference text
|
|
36545
|
-
text snippet from the page that was used to generate the ai_overview_element */
|
|
36546
|
-
text?: string | undefined;
|
|
36547
|
-
/** images of the element
|
|
36548
|
-
if there are none, equals null */
|
|
36549
|
-
images?: (ImagesElement | undefined)[] | undefined;
|
|
36550
|
-
/** references relevant to the element
|
|
36551
|
-
includes references to webpages that were used to generate the ai_overview_element */
|
|
36552
|
-
references?: (AiOverviewReference | undefined)[] | undefined;
|
|
36553
|
-
|
|
36554
|
-
[key: string]: any;
|
|
36555
|
-
}
|
|
36556
|
-
|
|
36557
36592
|
export class AiOverviewSerpElementItem extends BaseSerpElementItem implements IAiOverviewSerpElementItem {
|
|
36558
36593
|
/** indicates whether the element is loaded asynchronically
|
|
36559
36594
|
if true, the ai_overview element is loaded asynchronically;
|
|
36560
36595
|
if false, the ai_overview element is loaded from cache; */
|
|
36561
36596
|
asynchronous_ai_overview?: boolean | undefined;
|
|
36562
|
-
/**
|
|
36563
|
-
if there are none, equals null */
|
|
36597
|
+
/** contains arrays of specific images */
|
|
36564
36598
|
items?: (AiOverviewElement | undefined)[] | undefined;
|
|
36565
36599
|
/** additional references relevant to the item
|
|
36566
36600
|
includes references to webpages that may have been used to generate the ai_overview */
|
|
@@ -36634,8 +36668,7 @@ export interface IAiOverviewSerpElementItem extends IBaseSerpElementItem {
|
|
|
36634
36668
|
if true, the ai_overview element is loaded asynchronically;
|
|
36635
36669
|
if false, the ai_overview element is loaded from cache; */
|
|
36636
36670
|
asynchronous_ai_overview?: boolean | undefined;
|
|
36637
|
-
/**
|
|
36638
|
-
if there are none, equals null */
|
|
36671
|
+
/** contains arrays of specific images */
|
|
36639
36672
|
items?: (AiOverviewElement | undefined)[] | undefined;
|
|
36640
36673
|
/** additional references relevant to the item
|
|
36641
36674
|
includes references to webpages that may have been used to generate the ai_overview */
|
|
@@ -36680,7 +36713,7 @@ answer_box, app, carousel, multi_carousel, featured_snippet, google_flights, goo
|
|
|
36680
36713
|
se_results_count?: number | undefined;
|
|
36681
36714
|
/** the number of results returned in the items array */
|
|
36682
36715
|
items_count?: number | undefined;
|
|
36683
|
-
/**
|
|
36716
|
+
/** items present in the element */
|
|
36684
36717
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
36685
36718
|
|
|
36686
36719
|
[key: string]: any;
|
|
@@ -36792,7 +36825,7 @@ answer_box, app, carousel, multi_carousel, featured_snippet, google_flights, goo
|
|
|
36792
36825
|
se_results_count?: number | undefined;
|
|
36793
36826
|
/** the number of results returned in the items array */
|
|
36794
36827
|
items_count?: number | undefined;
|
|
36795
|
-
/**
|
|
36828
|
+
/** items present in the element */
|
|
36796
36829
|
items?: (BaseSerpElementItem | undefined)[] | undefined;
|
|
36797
36830
|
|
|
36798
36831
|
[key: string]: any;
|
|
@@ -161552,11 +161585,11 @@ export interface ITableContentItemInfo {
|
|
|
161552
161585
|
}
|
|
161553
161586
|
|
|
161554
161587
|
export class TableContent implements ITableContent {
|
|
161555
|
-
/** content of the header
|
|
161588
|
+
/** parsed content of the header */
|
|
161556
161589
|
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161557
161590
|
/** content of the body of the table */
|
|
161558
161591
|
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161559
|
-
/**
|
|
161592
|
+
/** content of the footer of the table */
|
|
161560
161593
|
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161561
161594
|
|
|
161562
161595
|
[key: string]: any;
|
|
@@ -161627,11 +161660,11 @@ export class TableContent implements ITableContent {
|
|
|
161627
161660
|
}
|
|
161628
161661
|
|
|
161629
161662
|
export interface ITableContent {
|
|
161630
|
-
/** content of the header
|
|
161663
|
+
/** parsed content of the header */
|
|
161631
161664
|
header?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161632
161665
|
/** content of the body of the table */
|
|
161633
161666
|
body?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161634
|
-
/**
|
|
161667
|
+
/** content of the footer of the table */
|
|
161635
161668
|
footer?: (TableContentItemInfo | undefined)[] | undefined;
|
|
161636
161669
|
|
|
161637
161670
|
[key: string]: any;
|
|
@@ -161758,9 +161791,9 @@ you can find more information about content priority calculation in this help ce
|
|
|
161758
161791
|
}
|
|
161759
161792
|
|
|
161760
161793
|
export class PageContentInfo implements IPageContentInfo {
|
|
161761
|
-
/**
|
|
161794
|
+
/** content of the header of the table */
|
|
161762
161795
|
header?: PageSectionContentInfo | undefined;
|
|
161763
|
-
/** content of the footer
|
|
161796
|
+
/** parsed content of the footer */
|
|
161764
161797
|
footer?: PageSectionContentInfo | undefined;
|
|
161765
161798
|
/** main topic on the page
|
|
161766
161799
|
you can find more information about topic priority calculation in this help center article */
|
|
@@ -161831,9 +161864,9 @@ you can find more information about topic priority calculation in this help cent
|
|
|
161831
161864
|
}
|
|
161832
161865
|
|
|
161833
161866
|
export interface IPageContentInfo {
|
|
161834
|
-
/**
|
|
161867
|
+
/** content of the header of the table */
|
|
161835
161868
|
header?: PageSectionContentInfo | undefined;
|
|
161836
|
-
/** content of the footer
|
|
161869
|
+
/** parsed content of the footer */
|
|
161837
161870
|
footer?: PageSectionContentInfo | undefined;
|
|
161838
161871
|
/** main topic on the page
|
|
161839
161872
|
you can find more information about topic priority calculation in this help center article */
|
|
@@ -218196,8 +218229,8 @@ export class AppendixSerpDayStatisticsRatesData implements IAppendixSerpDayStati
|
|
|
218196
218229
|
tasks_fixed?: number | undefined;
|
|
218197
218230
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
218198
218231
|
screenshot?: number | undefined;
|
|
218199
|
-
ai_summary?: number | undefined;
|
|
218200
218232
|
id_list?: number | undefined;
|
|
218233
|
+
ai_summary?: number | undefined;
|
|
218201
218234
|
|
|
218202
218235
|
[key: string]: any;
|
|
218203
218236
|
|
|
@@ -218226,8 +218259,8 @@ export class AppendixSerpDayStatisticsRatesData implements IAppendixSerpDayStati
|
|
|
218226
218259
|
this.tasks_fixed = _data["tasks_fixed"];
|
|
218227
218260
|
this.jobs = _data["jobs"] ? AppendixJobsSerpLimitsRatesDataInfo.fromJS(_data["jobs"]) : <any>undefined;
|
|
218228
218261
|
this.screenshot = _data["screenshot"];
|
|
218229
|
-
this.ai_summary = _data["ai_summary"];
|
|
218230
218262
|
this.id_list = _data["id_list"];
|
|
218263
|
+
this.ai_summary = _data["ai_summary"];
|
|
218231
218264
|
}
|
|
218232
218265
|
}
|
|
218233
218266
|
|
|
@@ -218254,8 +218287,8 @@ export class AppendixSerpDayStatisticsRatesData implements IAppendixSerpDayStati
|
|
|
218254
218287
|
data["tasks_fixed"] = this.tasks_fixed;
|
|
218255
218288
|
data["jobs"] = this.jobs ? this.jobs?.toJSON() : <any>undefined;
|
|
218256
218289
|
data["screenshot"] = this.screenshot;
|
|
218257
|
-
data["ai_summary"] = this.ai_summary;
|
|
218258
218290
|
data["id_list"] = this.id_list;
|
|
218291
|
+
data["ai_summary"] = this.ai_summary;
|
|
218259
218292
|
return data;
|
|
218260
218293
|
}
|
|
218261
218294
|
}
|
|
@@ -218271,8 +218304,8 @@ export interface IAppendixSerpDayStatisticsRatesData {
|
|
|
218271
218304
|
tasks_fixed?: number | undefined;
|
|
218272
218305
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
218273
218306
|
screenshot?: number | undefined;
|
|
218274
|
-
ai_summary?: number | undefined;
|
|
218275
218307
|
id_list?: number | undefined;
|
|
218308
|
+
ai_summary?: number | undefined;
|
|
218276
218309
|
|
|
218277
218310
|
[key: string]: any;
|
|
218278
218311
|
}
|
|
@@ -218359,8 +218392,8 @@ export class AppendixKeywordsDataDayStatisticsRatesData implements IAppendixKeyw
|
|
|
218359
218392
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218360
218393
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218361
218394
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218362
|
-
search_volume_history?: AppendixInfo | undefined;
|
|
218363
218395
|
id_list?: number | undefined;
|
|
218396
|
+
search_volume_history?: AppendixInfo | undefined;
|
|
218364
218397
|
|
|
218365
218398
|
[key: string]: any;
|
|
218366
218399
|
|
|
@@ -218396,8 +218429,8 @@ export class AppendixKeywordsDataDayStatisticsRatesData implements IAppendixKeyw
|
|
|
218396
218429
|
this.dataforseo_trends = _data["dataforseo_trends"] ? AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo.fromJS(_data["dataforseo_trends"]) : <any>undefined;
|
|
218397
218430
|
this.clickstream_data = _data["clickstream_data"] ? AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo.fromJS(_data["clickstream_data"]) : <any>undefined;
|
|
218398
218431
|
this.google = _data["google"] ? AppendixBingKeywordsDataLimitsRatesDataInfo.fromJS(_data["google"]) : <any>undefined;
|
|
218399
|
-
this.search_volume_history = _data["search_volume_history"] ? AppendixInfo.fromJS(_data["search_volume_history"]) : <any>undefined;
|
|
218400
218432
|
this.id_list = _data["id_list"];
|
|
218433
|
+
this.search_volume_history = _data["search_volume_history"] ? AppendixInfo.fromJS(_data["search_volume_history"]) : <any>undefined;
|
|
218401
218434
|
}
|
|
218402
218435
|
}
|
|
218403
218436
|
|
|
@@ -218431,8 +218464,8 @@ export class AppendixKeywordsDataDayStatisticsRatesData implements IAppendixKeyw
|
|
|
218431
218464
|
data["dataforseo_trends"] = this.dataforseo_trends ? this.dataforseo_trends?.toJSON() : <any>undefined;
|
|
218432
218465
|
data["clickstream_data"] = this.clickstream_data ? this.clickstream_data?.toJSON() : <any>undefined;
|
|
218433
218466
|
data["google"] = this.google ? this.google?.toJSON() : <any>undefined;
|
|
218434
|
-
data["search_volume_history"] = this.search_volume_history ? this.search_volume_history?.toJSON() : <any>undefined;
|
|
218435
218467
|
data["id_list"] = this.id_list;
|
|
218468
|
+
data["search_volume_history"] = this.search_volume_history ? this.search_volume_history?.toJSON() : <any>undefined;
|
|
218436
218469
|
return data;
|
|
218437
218470
|
}
|
|
218438
218471
|
}
|
|
@@ -218455,8 +218488,8 @@ export interface IAppendixKeywordsDataDayStatisticsRatesData {
|
|
|
218455
218488
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218456
218489
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218457
218490
|
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
218458
|
-
search_volume_history?: AppendixInfo | undefined;
|
|
218459
218491
|
id_list?: number | undefined;
|
|
218492
|
+
search_volume_history?: AppendixInfo | undefined;
|
|
218460
218493
|
|
|
218461
218494
|
[key: string]: any;
|
|
218462
218495
|
}
|
|
@@ -218464,8 +218497,8 @@ export interface IAppendixKeywordsDataDayStatisticsRatesData {
|
|
|
218464
218497
|
export class AppendixAppendixDayStatisticsRatesData implements IAppendixAppendixDayStatisticsRatesData {
|
|
218465
218498
|
user_data?: number | undefined;
|
|
218466
218499
|
errors?: number | undefined;
|
|
218467
|
-
status?: number | undefined;
|
|
218468
218500
|
webhook_resend?: number | undefined;
|
|
218501
|
+
status?: number | undefined;
|
|
218469
218502
|
|
|
218470
218503
|
[key: string]: any;
|
|
218471
218504
|
|
|
@@ -218486,8 +218519,8 @@ export class AppendixAppendixDayStatisticsRatesData implements IAppendixAppendix
|
|
|
218486
218519
|
}
|
|
218487
218520
|
this.user_data = _data["user_data"];
|
|
218488
218521
|
this.errors = _data["errors"];
|
|
218489
|
-
this.status = _data["status"];
|
|
218490
218522
|
this.webhook_resend = _data["webhook_resend"];
|
|
218523
|
+
this.status = _data["status"];
|
|
218491
218524
|
}
|
|
218492
218525
|
}
|
|
218493
218526
|
|
|
@@ -218506,8 +218539,8 @@ export class AppendixAppendixDayStatisticsRatesData implements IAppendixAppendix
|
|
|
218506
218539
|
}
|
|
218507
218540
|
data["user_data"] = this.user_data;
|
|
218508
218541
|
data["errors"] = this.errors;
|
|
218509
|
-
data["status"] = this.status;
|
|
218510
218542
|
data["webhook_resend"] = this.webhook_resend;
|
|
218543
|
+
data["status"] = this.status;
|
|
218511
218544
|
return data;
|
|
218512
218545
|
}
|
|
218513
218546
|
}
|
|
@@ -218515,181 +218548,13 @@ export class AppendixAppendixDayStatisticsRatesData implements IAppendixAppendix
|
|
|
218515
218548
|
export interface IAppendixAppendixDayStatisticsRatesData {
|
|
218516
218549
|
user_data?: number | undefined;
|
|
218517
218550
|
errors?: number | undefined;
|
|
218518
|
-
status?: number | undefined;
|
|
218519
218551
|
webhook_resend?: number | undefined;
|
|
218520
|
-
|
|
218521
|
-
[key: string]: any;
|
|
218522
|
-
}
|
|
218523
|
-
|
|
218524
|
-
export class AppendixDataforseoLabsDayStatisticsRatesData implements IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
218525
|
-
locations_and_languages?: number | undefined;
|
|
218526
|
-
categories?: number | undefined;
|
|
218527
|
-
errors?: number | undefined;
|
|
218528
|
-
product_competitors?: AppendixInfo | undefined;
|
|
218529
|
-
product_keyword_intersections?: AppendixInfo | undefined;
|
|
218530
|
-
product_rank_overview?: AppendixInfo | undefined;
|
|
218531
|
-
ranked_keywords?: AppendixInfo | undefined;
|
|
218532
|
-
serp_competitors?: AppendixInfo | undefined;
|
|
218533
|
-
subdomains?: AppendixInfo | undefined;
|
|
218534
|
-
relevant_pages?: AppendixInfo | undefined;
|
|
218535
|
-
competitors_domain?: AppendixInfo | undefined;
|
|
218536
|
-
related_keywords?: AppendixInfo | undefined;
|
|
218537
|
-
domain_rank_overview?: AppendixInfo | undefined;
|
|
218538
|
-
domain_intersection?: AppendixInfo | undefined;
|
|
218539
|
-
page_intersection?: AppendixInfo | undefined;
|
|
218540
|
-
bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
218541
|
-
bulk_keyword_difficulty?: AppendixInfo | undefined;
|
|
218542
|
-
bulk_search_volume?: AppendixInfo | undefined;
|
|
218543
|
-
keywords_for_site?: AppendixInfo | undefined;
|
|
218544
|
-
keyword_suggestions?: AppendixInfo | undefined;
|
|
218545
|
-
keyword_ideas?: AppendixInfo | undefined;
|
|
218546
|
-
historical_search_volume?: AppendixInfo | undefined;
|
|
218547
|
-
categories_for_domain?: AppendixInfo | undefined;
|
|
218548
|
-
domain_metrics_by_categories?: AppendixInfo | undefined;
|
|
218549
|
-
top_searches?: AppendixInfo | undefined;
|
|
218550
|
-
domain_whois_overview?: AppendixInfo | undefined;
|
|
218551
|
-
historical_rank_overview?: AppendixInfo | undefined;
|
|
218552
|
-
keywords_for_categories?: AppendixInfo | undefined;
|
|
218553
|
-
historical_serps?: AppendixInfo | undefined;
|
|
218554
|
-
app_competitors?: AppendixInfo | undefined;
|
|
218555
|
-
keywords_for_app?: AppendixInfo | undefined;
|
|
218556
|
-
app_intersection?: AppendixInfo | undefined;
|
|
218557
|
-
bulk_app_metrics?: AppendixInfo | undefined;
|
|
218558
|
-
search_intent?: AppendixInfo | undefined;
|
|
218559
218552
|
status?: number | undefined;
|
|
218560
|
-
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
218561
|
-
available_filters?: number | undefined;
|
|
218562
|
-
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
218563
|
-
id_list?: number | undefined;
|
|
218564
|
-
available_history?: number | undefined;
|
|
218565
|
-
categories_for_keywords?: AppendixInfo | undefined;
|
|
218566
|
-
top_google_searches?: AppendixInfo | undefined;
|
|
218567
|
-
languages?: number | undefined;
|
|
218568
218553
|
|
|
218569
218554
|
[key: string]: any;
|
|
218570
|
-
|
|
218571
|
-
constructor(data?: IAppendixDataforseoLabsDayStatisticsRatesData) {
|
|
218572
|
-
if (data) {
|
|
218573
|
-
for (var property in data) {
|
|
218574
|
-
if (data.hasOwnProperty(property))
|
|
218575
|
-
(<any>this)[property] = (<any>data)[property];
|
|
218576
|
-
}
|
|
218577
|
-
}
|
|
218578
|
-
}
|
|
218579
|
-
|
|
218580
|
-
init(_data?: any) {
|
|
218581
|
-
if (_data) {
|
|
218582
|
-
for (var property in _data) {
|
|
218583
|
-
if (_data.hasOwnProperty(property))
|
|
218584
|
-
this[property] = _data[property];
|
|
218585
|
-
}
|
|
218586
|
-
this.locations_and_languages = _data["locations_and_languages"];
|
|
218587
|
-
this.categories = _data["categories"];
|
|
218588
|
-
this.errors = _data["errors"];
|
|
218589
|
-
this.product_competitors = _data["product_competitors"] ? AppendixInfo.fromJS(_data["product_competitors"]) : <any>undefined;
|
|
218590
|
-
this.product_keyword_intersections = _data["product_keyword_intersections"] ? AppendixInfo.fromJS(_data["product_keyword_intersections"]) : <any>undefined;
|
|
218591
|
-
this.product_rank_overview = _data["product_rank_overview"] ? AppendixInfo.fromJS(_data["product_rank_overview"]) : <any>undefined;
|
|
218592
|
-
this.ranked_keywords = _data["ranked_keywords"] ? AppendixInfo.fromJS(_data["ranked_keywords"]) : <any>undefined;
|
|
218593
|
-
this.serp_competitors = _data["serp_competitors"] ? AppendixInfo.fromJS(_data["serp_competitors"]) : <any>undefined;
|
|
218594
|
-
this.subdomains = _data["subdomains"] ? AppendixInfo.fromJS(_data["subdomains"]) : <any>undefined;
|
|
218595
|
-
this.relevant_pages = _data["relevant_pages"] ? AppendixInfo.fromJS(_data["relevant_pages"]) : <any>undefined;
|
|
218596
|
-
this.competitors_domain = _data["competitors_domain"] ? AppendixInfo.fromJS(_data["competitors_domain"]) : <any>undefined;
|
|
218597
|
-
this.related_keywords = _data["related_keywords"] ? AppendixInfo.fromJS(_data["related_keywords"]) : <any>undefined;
|
|
218598
|
-
this.domain_rank_overview = _data["domain_rank_overview"] ? AppendixInfo.fromJS(_data["domain_rank_overview"]) : <any>undefined;
|
|
218599
|
-
this.domain_intersection = _data["domain_intersection"] ? AppendixInfo.fromJS(_data["domain_intersection"]) : <any>undefined;
|
|
218600
|
-
this.page_intersection = _data["page_intersection"] ? AppendixInfo.fromJS(_data["page_intersection"]) : <any>undefined;
|
|
218601
|
-
this.bulk_traffic_estimation = _data["bulk_traffic_estimation"] ? AppendixInfo.fromJS(_data["bulk_traffic_estimation"]) : <any>undefined;
|
|
218602
|
-
this.bulk_keyword_difficulty = _data["bulk_keyword_difficulty"] ? AppendixInfo.fromJS(_data["bulk_keyword_difficulty"]) : <any>undefined;
|
|
218603
|
-
this.bulk_search_volume = _data["bulk_search_volume"] ? AppendixInfo.fromJS(_data["bulk_search_volume"]) : <any>undefined;
|
|
218604
|
-
this.keywords_for_site = _data["keywords_for_site"] ? AppendixInfo.fromJS(_data["keywords_for_site"]) : <any>undefined;
|
|
218605
|
-
this.keyword_suggestions = _data["keyword_suggestions"] ? AppendixInfo.fromJS(_data["keyword_suggestions"]) : <any>undefined;
|
|
218606
|
-
this.keyword_ideas = _data["keyword_ideas"] ? AppendixInfo.fromJS(_data["keyword_ideas"]) : <any>undefined;
|
|
218607
|
-
this.historical_search_volume = _data["historical_search_volume"] ? AppendixInfo.fromJS(_data["historical_search_volume"]) : <any>undefined;
|
|
218608
|
-
this.categories_for_domain = _data["categories_for_domain"] ? AppendixInfo.fromJS(_data["categories_for_domain"]) : <any>undefined;
|
|
218609
|
-
this.domain_metrics_by_categories = _data["domain_metrics_by_categories"] ? AppendixInfo.fromJS(_data["domain_metrics_by_categories"]) : <any>undefined;
|
|
218610
|
-
this.top_searches = _data["top_searches"] ? AppendixInfo.fromJS(_data["top_searches"]) : <any>undefined;
|
|
218611
|
-
this.domain_whois_overview = _data["domain_whois_overview"] ? AppendixInfo.fromJS(_data["domain_whois_overview"]) : <any>undefined;
|
|
218612
|
-
this.historical_rank_overview = _data["historical_rank_overview"] ? AppendixInfo.fromJS(_data["historical_rank_overview"]) : <any>undefined;
|
|
218613
|
-
this.keywords_for_categories = _data["keywords_for_categories"] ? AppendixInfo.fromJS(_data["keywords_for_categories"]) : <any>undefined;
|
|
218614
|
-
this.historical_serps = _data["historical_serps"] ? AppendixInfo.fromJS(_data["historical_serps"]) : <any>undefined;
|
|
218615
|
-
this.app_competitors = _data["app_competitors"] ? AppendixInfo.fromJS(_data["app_competitors"]) : <any>undefined;
|
|
218616
|
-
this.keywords_for_app = _data["keywords_for_app"] ? AppendixInfo.fromJS(_data["keywords_for_app"]) : <any>undefined;
|
|
218617
|
-
this.app_intersection = _data["app_intersection"] ? AppendixInfo.fromJS(_data["app_intersection"]) : <any>undefined;
|
|
218618
|
-
this.bulk_app_metrics = _data["bulk_app_metrics"] ? AppendixInfo.fromJS(_data["bulk_app_metrics"]) : <any>undefined;
|
|
218619
|
-
this.search_intent = _data["search_intent"] ? AppendixInfo.fromJS(_data["search_intent"]) : <any>undefined;
|
|
218620
|
-
this.status = _data["status"];
|
|
218621
|
-
this.amazon = _data["amazon"] ? AppendixDataforseoLabsLimitsRatesDataInfo.fromJS(_data["amazon"]) : <any>undefined;
|
|
218622
|
-
this.available_filters = _data["available_filters"];
|
|
218623
|
-
this.historical_bulk_traffic_estimation = _data["historical_bulk_traffic_estimation"] ? AppendixInfo.fromJS(_data["historical_bulk_traffic_estimation"]) : <any>undefined;
|
|
218624
|
-
this.id_list = _data["id_list"];
|
|
218625
|
-
this.available_history = _data["available_history"];
|
|
218626
|
-
this.categories_for_keywords = _data["categories_for_keywords"] ? AppendixInfo.fromJS(_data["categories_for_keywords"]) : <any>undefined;
|
|
218627
|
-
this.top_google_searches = _data["top_google_searches"] ? AppendixInfo.fromJS(_data["top_google_searches"]) : <any>undefined;
|
|
218628
|
-
this.languages = _data["languages"];
|
|
218629
|
-
}
|
|
218630
|
-
}
|
|
218631
|
-
|
|
218632
|
-
static fromJS(data: any): AppendixDataforseoLabsDayStatisticsRatesData {
|
|
218633
|
-
data = typeof data === 'object' ? data : {};
|
|
218634
|
-
let result = new AppendixDataforseoLabsDayStatisticsRatesData();
|
|
218635
|
-
result.init(data);
|
|
218636
|
-
return result;
|
|
218637
|
-
}
|
|
218638
|
-
|
|
218639
|
-
toJSON(data?: any) {
|
|
218640
|
-
data = typeof data === 'object' ? data : {};
|
|
218641
|
-
for (var property in this) {
|
|
218642
|
-
if (this.hasOwnProperty(property))
|
|
218643
|
-
data[property] = this[property];
|
|
218644
|
-
}
|
|
218645
|
-
data["locations_and_languages"] = this.locations_and_languages;
|
|
218646
|
-
data["categories"] = this.categories;
|
|
218647
|
-
data["errors"] = this.errors;
|
|
218648
|
-
data["product_competitors"] = this.product_competitors ? this.product_competitors?.toJSON() : <any>undefined;
|
|
218649
|
-
data["product_keyword_intersections"] = this.product_keyword_intersections ? this.product_keyword_intersections?.toJSON() : <any>undefined;
|
|
218650
|
-
data["product_rank_overview"] = this.product_rank_overview ? this.product_rank_overview?.toJSON() : <any>undefined;
|
|
218651
|
-
data["ranked_keywords"] = this.ranked_keywords ? this.ranked_keywords?.toJSON() : <any>undefined;
|
|
218652
|
-
data["serp_competitors"] = this.serp_competitors ? this.serp_competitors?.toJSON() : <any>undefined;
|
|
218653
|
-
data["subdomains"] = this.subdomains ? this.subdomains?.toJSON() : <any>undefined;
|
|
218654
|
-
data["relevant_pages"] = this.relevant_pages ? this.relevant_pages?.toJSON() : <any>undefined;
|
|
218655
|
-
data["competitors_domain"] = this.competitors_domain ? this.competitors_domain?.toJSON() : <any>undefined;
|
|
218656
|
-
data["related_keywords"] = this.related_keywords ? this.related_keywords?.toJSON() : <any>undefined;
|
|
218657
|
-
data["domain_rank_overview"] = this.domain_rank_overview ? this.domain_rank_overview?.toJSON() : <any>undefined;
|
|
218658
|
-
data["domain_intersection"] = this.domain_intersection ? this.domain_intersection?.toJSON() : <any>undefined;
|
|
218659
|
-
data["page_intersection"] = this.page_intersection ? this.page_intersection?.toJSON() : <any>undefined;
|
|
218660
|
-
data["bulk_traffic_estimation"] = this.bulk_traffic_estimation ? this.bulk_traffic_estimation?.toJSON() : <any>undefined;
|
|
218661
|
-
data["bulk_keyword_difficulty"] = this.bulk_keyword_difficulty ? this.bulk_keyword_difficulty?.toJSON() : <any>undefined;
|
|
218662
|
-
data["bulk_search_volume"] = this.bulk_search_volume ? this.bulk_search_volume?.toJSON() : <any>undefined;
|
|
218663
|
-
data["keywords_for_site"] = this.keywords_for_site ? this.keywords_for_site?.toJSON() : <any>undefined;
|
|
218664
|
-
data["keyword_suggestions"] = this.keyword_suggestions ? this.keyword_suggestions?.toJSON() : <any>undefined;
|
|
218665
|
-
data["keyword_ideas"] = this.keyword_ideas ? this.keyword_ideas?.toJSON() : <any>undefined;
|
|
218666
|
-
data["historical_search_volume"] = this.historical_search_volume ? this.historical_search_volume?.toJSON() : <any>undefined;
|
|
218667
|
-
data["categories_for_domain"] = this.categories_for_domain ? this.categories_for_domain?.toJSON() : <any>undefined;
|
|
218668
|
-
data["domain_metrics_by_categories"] = this.domain_metrics_by_categories ? this.domain_metrics_by_categories?.toJSON() : <any>undefined;
|
|
218669
|
-
data["top_searches"] = this.top_searches ? this.top_searches?.toJSON() : <any>undefined;
|
|
218670
|
-
data["domain_whois_overview"] = this.domain_whois_overview ? this.domain_whois_overview?.toJSON() : <any>undefined;
|
|
218671
|
-
data["historical_rank_overview"] = this.historical_rank_overview ? this.historical_rank_overview?.toJSON() : <any>undefined;
|
|
218672
|
-
data["keywords_for_categories"] = this.keywords_for_categories ? this.keywords_for_categories?.toJSON() : <any>undefined;
|
|
218673
|
-
data["historical_serps"] = this.historical_serps ? this.historical_serps?.toJSON() : <any>undefined;
|
|
218674
|
-
data["app_competitors"] = this.app_competitors ? this.app_competitors?.toJSON() : <any>undefined;
|
|
218675
|
-
data["keywords_for_app"] = this.keywords_for_app ? this.keywords_for_app?.toJSON() : <any>undefined;
|
|
218676
|
-
data["app_intersection"] = this.app_intersection ? this.app_intersection?.toJSON() : <any>undefined;
|
|
218677
|
-
data["bulk_app_metrics"] = this.bulk_app_metrics ? this.bulk_app_metrics?.toJSON() : <any>undefined;
|
|
218678
|
-
data["search_intent"] = this.search_intent ? this.search_intent?.toJSON() : <any>undefined;
|
|
218679
|
-
data["status"] = this.status;
|
|
218680
|
-
data["amazon"] = this.amazon ? this.amazon?.toJSON() : <any>undefined;
|
|
218681
|
-
data["available_filters"] = this.available_filters;
|
|
218682
|
-
data["historical_bulk_traffic_estimation"] = this.historical_bulk_traffic_estimation ? this.historical_bulk_traffic_estimation?.toJSON() : <any>undefined;
|
|
218683
|
-
data["id_list"] = this.id_list;
|
|
218684
|
-
data["available_history"] = this.available_history;
|
|
218685
|
-
data["categories_for_keywords"] = this.categories_for_keywords ? this.categories_for_keywords?.toJSON() : <any>undefined;
|
|
218686
|
-
data["top_google_searches"] = this.top_google_searches ? this.top_google_searches?.toJSON() : <any>undefined;
|
|
218687
|
-
data["languages"] = this.languages;
|
|
218688
|
-
return data;
|
|
218689
|
-
}
|
|
218690
218555
|
}
|
|
218691
218556
|
|
|
218692
|
-
export
|
|
218557
|
+
export class AppendixDataforseoLabsDayStatisticsRatesData implements IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
218693
218558
|
locations_and_languages?: number | undefined;
|
|
218694
218559
|
categories?: number | undefined;
|
|
218695
218560
|
errors?: number | undefined;
|
|
@@ -218724,15 +218589,183 @@ export interface IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
|
218724
218589
|
app_intersection?: AppendixInfo | undefined;
|
|
218725
218590
|
bulk_app_metrics?: AppendixInfo | undefined;
|
|
218726
218591
|
search_intent?: AppendixInfo | undefined;
|
|
218592
|
+
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
218593
|
+
languages?: number | undefined;
|
|
218594
|
+
id_list?: number | undefined;
|
|
218595
|
+
top_google_searches?: AppendixInfo | undefined;
|
|
218727
218596
|
status?: number | undefined;
|
|
218728
|
-
|
|
218597
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
218598
|
+
available_history?: number | undefined;
|
|
218729
218599
|
available_filters?: number | undefined;
|
|
218600
|
+
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
218601
|
+
|
|
218602
|
+
[key: string]: any;
|
|
218603
|
+
|
|
218604
|
+
constructor(data?: IAppendixDataforseoLabsDayStatisticsRatesData) {
|
|
218605
|
+
if (data) {
|
|
218606
|
+
for (var property in data) {
|
|
218607
|
+
if (data.hasOwnProperty(property))
|
|
218608
|
+
(<any>this)[property] = (<any>data)[property];
|
|
218609
|
+
}
|
|
218610
|
+
}
|
|
218611
|
+
}
|
|
218612
|
+
|
|
218613
|
+
init(_data?: any) {
|
|
218614
|
+
if (_data) {
|
|
218615
|
+
for (var property in _data) {
|
|
218616
|
+
if (_data.hasOwnProperty(property))
|
|
218617
|
+
this[property] = _data[property];
|
|
218618
|
+
}
|
|
218619
|
+
this.locations_and_languages = _data["locations_and_languages"];
|
|
218620
|
+
this.categories = _data["categories"];
|
|
218621
|
+
this.errors = _data["errors"];
|
|
218622
|
+
this.product_competitors = _data["product_competitors"] ? AppendixInfo.fromJS(_data["product_competitors"]) : <any>undefined;
|
|
218623
|
+
this.product_keyword_intersections = _data["product_keyword_intersections"] ? AppendixInfo.fromJS(_data["product_keyword_intersections"]) : <any>undefined;
|
|
218624
|
+
this.product_rank_overview = _data["product_rank_overview"] ? AppendixInfo.fromJS(_data["product_rank_overview"]) : <any>undefined;
|
|
218625
|
+
this.ranked_keywords = _data["ranked_keywords"] ? AppendixInfo.fromJS(_data["ranked_keywords"]) : <any>undefined;
|
|
218626
|
+
this.serp_competitors = _data["serp_competitors"] ? AppendixInfo.fromJS(_data["serp_competitors"]) : <any>undefined;
|
|
218627
|
+
this.subdomains = _data["subdomains"] ? AppendixInfo.fromJS(_data["subdomains"]) : <any>undefined;
|
|
218628
|
+
this.relevant_pages = _data["relevant_pages"] ? AppendixInfo.fromJS(_data["relevant_pages"]) : <any>undefined;
|
|
218629
|
+
this.competitors_domain = _data["competitors_domain"] ? AppendixInfo.fromJS(_data["competitors_domain"]) : <any>undefined;
|
|
218630
|
+
this.related_keywords = _data["related_keywords"] ? AppendixInfo.fromJS(_data["related_keywords"]) : <any>undefined;
|
|
218631
|
+
this.domain_rank_overview = _data["domain_rank_overview"] ? AppendixInfo.fromJS(_data["domain_rank_overview"]) : <any>undefined;
|
|
218632
|
+
this.domain_intersection = _data["domain_intersection"] ? AppendixInfo.fromJS(_data["domain_intersection"]) : <any>undefined;
|
|
218633
|
+
this.page_intersection = _data["page_intersection"] ? AppendixInfo.fromJS(_data["page_intersection"]) : <any>undefined;
|
|
218634
|
+
this.bulk_traffic_estimation = _data["bulk_traffic_estimation"] ? AppendixInfo.fromJS(_data["bulk_traffic_estimation"]) : <any>undefined;
|
|
218635
|
+
this.bulk_keyword_difficulty = _data["bulk_keyword_difficulty"] ? AppendixInfo.fromJS(_data["bulk_keyword_difficulty"]) : <any>undefined;
|
|
218636
|
+
this.bulk_search_volume = _data["bulk_search_volume"] ? AppendixInfo.fromJS(_data["bulk_search_volume"]) : <any>undefined;
|
|
218637
|
+
this.keywords_for_site = _data["keywords_for_site"] ? AppendixInfo.fromJS(_data["keywords_for_site"]) : <any>undefined;
|
|
218638
|
+
this.keyword_suggestions = _data["keyword_suggestions"] ? AppendixInfo.fromJS(_data["keyword_suggestions"]) : <any>undefined;
|
|
218639
|
+
this.keyword_ideas = _data["keyword_ideas"] ? AppendixInfo.fromJS(_data["keyword_ideas"]) : <any>undefined;
|
|
218640
|
+
this.historical_search_volume = _data["historical_search_volume"] ? AppendixInfo.fromJS(_data["historical_search_volume"]) : <any>undefined;
|
|
218641
|
+
this.categories_for_domain = _data["categories_for_domain"] ? AppendixInfo.fromJS(_data["categories_for_domain"]) : <any>undefined;
|
|
218642
|
+
this.domain_metrics_by_categories = _data["domain_metrics_by_categories"] ? AppendixInfo.fromJS(_data["domain_metrics_by_categories"]) : <any>undefined;
|
|
218643
|
+
this.top_searches = _data["top_searches"] ? AppendixInfo.fromJS(_data["top_searches"]) : <any>undefined;
|
|
218644
|
+
this.domain_whois_overview = _data["domain_whois_overview"] ? AppendixInfo.fromJS(_data["domain_whois_overview"]) : <any>undefined;
|
|
218645
|
+
this.historical_rank_overview = _data["historical_rank_overview"] ? AppendixInfo.fromJS(_data["historical_rank_overview"]) : <any>undefined;
|
|
218646
|
+
this.keywords_for_categories = _data["keywords_for_categories"] ? AppendixInfo.fromJS(_data["keywords_for_categories"]) : <any>undefined;
|
|
218647
|
+
this.historical_serps = _data["historical_serps"] ? AppendixInfo.fromJS(_data["historical_serps"]) : <any>undefined;
|
|
218648
|
+
this.app_competitors = _data["app_competitors"] ? AppendixInfo.fromJS(_data["app_competitors"]) : <any>undefined;
|
|
218649
|
+
this.keywords_for_app = _data["keywords_for_app"] ? AppendixInfo.fromJS(_data["keywords_for_app"]) : <any>undefined;
|
|
218650
|
+
this.app_intersection = _data["app_intersection"] ? AppendixInfo.fromJS(_data["app_intersection"]) : <any>undefined;
|
|
218651
|
+
this.bulk_app_metrics = _data["bulk_app_metrics"] ? AppendixInfo.fromJS(_data["bulk_app_metrics"]) : <any>undefined;
|
|
218652
|
+
this.search_intent = _data["search_intent"] ? AppendixInfo.fromJS(_data["search_intent"]) : <any>undefined;
|
|
218653
|
+
this.historical_bulk_traffic_estimation = _data["historical_bulk_traffic_estimation"] ? AppendixInfo.fromJS(_data["historical_bulk_traffic_estimation"]) : <any>undefined;
|
|
218654
|
+
this.languages = _data["languages"];
|
|
218655
|
+
this.id_list = _data["id_list"];
|
|
218656
|
+
this.top_google_searches = _data["top_google_searches"] ? AppendixInfo.fromJS(_data["top_google_searches"]) : <any>undefined;
|
|
218657
|
+
this.status = _data["status"];
|
|
218658
|
+
this.categories_for_keywords = _data["categories_for_keywords"] ? AppendixInfo.fromJS(_data["categories_for_keywords"]) : <any>undefined;
|
|
218659
|
+
this.available_history = _data["available_history"];
|
|
218660
|
+
this.available_filters = _data["available_filters"];
|
|
218661
|
+
this.amazon = _data["amazon"] ? AppendixDataforseoLabsLimitsRatesDataInfo.fromJS(_data["amazon"]) : <any>undefined;
|
|
218662
|
+
}
|
|
218663
|
+
}
|
|
218664
|
+
|
|
218665
|
+
static fromJS(data: any): AppendixDataforseoLabsDayStatisticsRatesData {
|
|
218666
|
+
data = typeof data === 'object' ? data : {};
|
|
218667
|
+
let result = new AppendixDataforseoLabsDayStatisticsRatesData();
|
|
218668
|
+
result.init(data);
|
|
218669
|
+
return result;
|
|
218670
|
+
}
|
|
218671
|
+
|
|
218672
|
+
toJSON(data?: any) {
|
|
218673
|
+
data = typeof data === 'object' ? data : {};
|
|
218674
|
+
for (var property in this) {
|
|
218675
|
+
if (this.hasOwnProperty(property))
|
|
218676
|
+
data[property] = this[property];
|
|
218677
|
+
}
|
|
218678
|
+
data["locations_and_languages"] = this.locations_and_languages;
|
|
218679
|
+
data["categories"] = this.categories;
|
|
218680
|
+
data["errors"] = this.errors;
|
|
218681
|
+
data["product_competitors"] = this.product_competitors ? this.product_competitors?.toJSON() : <any>undefined;
|
|
218682
|
+
data["product_keyword_intersections"] = this.product_keyword_intersections ? this.product_keyword_intersections?.toJSON() : <any>undefined;
|
|
218683
|
+
data["product_rank_overview"] = this.product_rank_overview ? this.product_rank_overview?.toJSON() : <any>undefined;
|
|
218684
|
+
data["ranked_keywords"] = this.ranked_keywords ? this.ranked_keywords?.toJSON() : <any>undefined;
|
|
218685
|
+
data["serp_competitors"] = this.serp_competitors ? this.serp_competitors?.toJSON() : <any>undefined;
|
|
218686
|
+
data["subdomains"] = this.subdomains ? this.subdomains?.toJSON() : <any>undefined;
|
|
218687
|
+
data["relevant_pages"] = this.relevant_pages ? this.relevant_pages?.toJSON() : <any>undefined;
|
|
218688
|
+
data["competitors_domain"] = this.competitors_domain ? this.competitors_domain?.toJSON() : <any>undefined;
|
|
218689
|
+
data["related_keywords"] = this.related_keywords ? this.related_keywords?.toJSON() : <any>undefined;
|
|
218690
|
+
data["domain_rank_overview"] = this.domain_rank_overview ? this.domain_rank_overview?.toJSON() : <any>undefined;
|
|
218691
|
+
data["domain_intersection"] = this.domain_intersection ? this.domain_intersection?.toJSON() : <any>undefined;
|
|
218692
|
+
data["page_intersection"] = this.page_intersection ? this.page_intersection?.toJSON() : <any>undefined;
|
|
218693
|
+
data["bulk_traffic_estimation"] = this.bulk_traffic_estimation ? this.bulk_traffic_estimation?.toJSON() : <any>undefined;
|
|
218694
|
+
data["bulk_keyword_difficulty"] = this.bulk_keyword_difficulty ? this.bulk_keyword_difficulty?.toJSON() : <any>undefined;
|
|
218695
|
+
data["bulk_search_volume"] = this.bulk_search_volume ? this.bulk_search_volume?.toJSON() : <any>undefined;
|
|
218696
|
+
data["keywords_for_site"] = this.keywords_for_site ? this.keywords_for_site?.toJSON() : <any>undefined;
|
|
218697
|
+
data["keyword_suggestions"] = this.keyword_suggestions ? this.keyword_suggestions?.toJSON() : <any>undefined;
|
|
218698
|
+
data["keyword_ideas"] = this.keyword_ideas ? this.keyword_ideas?.toJSON() : <any>undefined;
|
|
218699
|
+
data["historical_search_volume"] = this.historical_search_volume ? this.historical_search_volume?.toJSON() : <any>undefined;
|
|
218700
|
+
data["categories_for_domain"] = this.categories_for_domain ? this.categories_for_domain?.toJSON() : <any>undefined;
|
|
218701
|
+
data["domain_metrics_by_categories"] = this.domain_metrics_by_categories ? this.domain_metrics_by_categories?.toJSON() : <any>undefined;
|
|
218702
|
+
data["top_searches"] = this.top_searches ? this.top_searches?.toJSON() : <any>undefined;
|
|
218703
|
+
data["domain_whois_overview"] = this.domain_whois_overview ? this.domain_whois_overview?.toJSON() : <any>undefined;
|
|
218704
|
+
data["historical_rank_overview"] = this.historical_rank_overview ? this.historical_rank_overview?.toJSON() : <any>undefined;
|
|
218705
|
+
data["keywords_for_categories"] = this.keywords_for_categories ? this.keywords_for_categories?.toJSON() : <any>undefined;
|
|
218706
|
+
data["historical_serps"] = this.historical_serps ? this.historical_serps?.toJSON() : <any>undefined;
|
|
218707
|
+
data["app_competitors"] = this.app_competitors ? this.app_competitors?.toJSON() : <any>undefined;
|
|
218708
|
+
data["keywords_for_app"] = this.keywords_for_app ? this.keywords_for_app?.toJSON() : <any>undefined;
|
|
218709
|
+
data["app_intersection"] = this.app_intersection ? this.app_intersection?.toJSON() : <any>undefined;
|
|
218710
|
+
data["bulk_app_metrics"] = this.bulk_app_metrics ? this.bulk_app_metrics?.toJSON() : <any>undefined;
|
|
218711
|
+
data["search_intent"] = this.search_intent ? this.search_intent?.toJSON() : <any>undefined;
|
|
218712
|
+
data["historical_bulk_traffic_estimation"] = this.historical_bulk_traffic_estimation ? this.historical_bulk_traffic_estimation?.toJSON() : <any>undefined;
|
|
218713
|
+
data["languages"] = this.languages;
|
|
218714
|
+
data["id_list"] = this.id_list;
|
|
218715
|
+
data["top_google_searches"] = this.top_google_searches ? this.top_google_searches?.toJSON() : <any>undefined;
|
|
218716
|
+
data["status"] = this.status;
|
|
218717
|
+
data["categories_for_keywords"] = this.categories_for_keywords ? this.categories_for_keywords?.toJSON() : <any>undefined;
|
|
218718
|
+
data["available_history"] = this.available_history;
|
|
218719
|
+
data["available_filters"] = this.available_filters;
|
|
218720
|
+
data["amazon"] = this.amazon ? this.amazon?.toJSON() : <any>undefined;
|
|
218721
|
+
return data;
|
|
218722
|
+
}
|
|
218723
|
+
}
|
|
218724
|
+
|
|
218725
|
+
export interface IAppendixDataforseoLabsDayStatisticsRatesData {
|
|
218726
|
+
locations_and_languages?: number | undefined;
|
|
218727
|
+
categories?: number | undefined;
|
|
218728
|
+
errors?: number | undefined;
|
|
218729
|
+
product_competitors?: AppendixInfo | undefined;
|
|
218730
|
+
product_keyword_intersections?: AppendixInfo | undefined;
|
|
218731
|
+
product_rank_overview?: AppendixInfo | undefined;
|
|
218732
|
+
ranked_keywords?: AppendixInfo | undefined;
|
|
218733
|
+
serp_competitors?: AppendixInfo | undefined;
|
|
218734
|
+
subdomains?: AppendixInfo | undefined;
|
|
218735
|
+
relevant_pages?: AppendixInfo | undefined;
|
|
218736
|
+
competitors_domain?: AppendixInfo | undefined;
|
|
218737
|
+
related_keywords?: AppendixInfo | undefined;
|
|
218738
|
+
domain_rank_overview?: AppendixInfo | undefined;
|
|
218739
|
+
domain_intersection?: AppendixInfo | undefined;
|
|
218740
|
+
page_intersection?: AppendixInfo | undefined;
|
|
218741
|
+
bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
218742
|
+
bulk_keyword_difficulty?: AppendixInfo | undefined;
|
|
218743
|
+
bulk_search_volume?: AppendixInfo | undefined;
|
|
218744
|
+
keywords_for_site?: AppendixInfo | undefined;
|
|
218745
|
+
keyword_suggestions?: AppendixInfo | undefined;
|
|
218746
|
+
keyword_ideas?: AppendixInfo | undefined;
|
|
218747
|
+
historical_search_volume?: AppendixInfo | undefined;
|
|
218748
|
+
categories_for_domain?: AppendixInfo | undefined;
|
|
218749
|
+
domain_metrics_by_categories?: AppendixInfo | undefined;
|
|
218750
|
+
top_searches?: AppendixInfo | undefined;
|
|
218751
|
+
domain_whois_overview?: AppendixInfo | undefined;
|
|
218752
|
+
historical_rank_overview?: AppendixInfo | undefined;
|
|
218753
|
+
keywords_for_categories?: AppendixInfo | undefined;
|
|
218754
|
+
historical_serps?: AppendixInfo | undefined;
|
|
218755
|
+
app_competitors?: AppendixInfo | undefined;
|
|
218756
|
+
keywords_for_app?: AppendixInfo | undefined;
|
|
218757
|
+
app_intersection?: AppendixInfo | undefined;
|
|
218758
|
+
bulk_app_metrics?: AppendixInfo | undefined;
|
|
218759
|
+
search_intent?: AppendixInfo | undefined;
|
|
218730
218760
|
historical_bulk_traffic_estimation?: AppendixInfo | undefined;
|
|
218761
|
+
languages?: number | undefined;
|
|
218731
218762
|
id_list?: number | undefined;
|
|
218732
|
-
available_history?: number | undefined;
|
|
218733
|
-
categories_for_keywords?: AppendixInfo | undefined;
|
|
218734
218763
|
top_google_searches?: AppendixInfo | undefined;
|
|
218735
|
-
|
|
218764
|
+
status?: number | undefined;
|
|
218765
|
+
categories_for_keywords?: AppendixInfo | undefined;
|
|
218766
|
+
available_history?: number | undefined;
|
|
218767
|
+
available_filters?: number | undefined;
|
|
218768
|
+
amazon?: AppendixDataforseoLabsLimitsRatesDataInfo | undefined;
|
|
218736
218769
|
|
|
218737
218770
|
[key: string]: any;
|
|
218738
218771
|
}
|
|
@@ -218742,8 +218775,8 @@ export class AppendixDomainAnalyticsDayStatisticsRatesData implements IAppendixD
|
|
|
218742
218775
|
errors?: number | undefined;
|
|
218743
218776
|
whois?: AppendixWhoisDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
218744
218777
|
technologies?: AppendixTechnologiesDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
218745
|
-
id_list?: number | undefined;
|
|
218746
218778
|
available_filters?: number | undefined;
|
|
218779
|
+
id_list?: number | undefined;
|
|
218747
218780
|
|
|
218748
218781
|
[key: string]: any;
|
|
218749
218782
|
|
|
@@ -218766,8 +218799,8 @@ export class AppendixDomainAnalyticsDayStatisticsRatesData implements IAppendixD
|
|
|
218766
218799
|
this.errors = _data["errors"];
|
|
218767
218800
|
this.whois = _data["whois"] ? AppendixWhoisDomainAnalyticsLimitsRatesDataInfo.fromJS(_data["whois"]) : <any>undefined;
|
|
218768
218801
|
this.technologies = _data["technologies"] ? AppendixTechnologiesDomainAnalyticsLimitsRatesDataInfo.fromJS(_data["technologies"]) : <any>undefined;
|
|
218769
|
-
this.id_list = _data["id_list"];
|
|
218770
218802
|
this.available_filters = _data["available_filters"];
|
|
218803
|
+
this.id_list = _data["id_list"];
|
|
218771
218804
|
}
|
|
218772
218805
|
}
|
|
218773
218806
|
|
|
@@ -218788,8 +218821,8 @@ export class AppendixDomainAnalyticsDayStatisticsRatesData implements IAppendixD
|
|
|
218788
218821
|
data["errors"] = this.errors;
|
|
218789
218822
|
data["whois"] = this.whois ? this.whois?.toJSON() : <any>undefined;
|
|
218790
218823
|
data["technologies"] = this.technologies ? this.technologies?.toJSON() : <any>undefined;
|
|
218791
|
-
data["id_list"] = this.id_list;
|
|
218792
218824
|
data["available_filters"] = this.available_filters;
|
|
218825
|
+
data["id_list"] = this.id_list;
|
|
218793
218826
|
return data;
|
|
218794
218827
|
}
|
|
218795
218828
|
}
|
|
@@ -218799,8 +218832,8 @@ export interface IAppendixDomainAnalyticsDayStatisticsRatesData {
|
|
|
218799
218832
|
errors?: number | undefined;
|
|
218800
218833
|
whois?: AppendixWhoisDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
218801
218834
|
technologies?: AppendixTechnologiesDomainAnalyticsLimitsRatesDataInfo | undefined;
|
|
218802
|
-
id_list?: number | undefined;
|
|
218803
218835
|
available_filters?: number | undefined;
|
|
218836
|
+
id_list?: number | undefined;
|
|
218804
218837
|
|
|
218805
218838
|
[key: string]: any;
|
|
218806
218839
|
}
|
|
@@ -218886,8 +218919,8 @@ export class AppendixLighthouseOnPageDayStatisticsRatesData implements IAppendix
|
|
|
218886
218919
|
tasks_ready?: number | undefined;
|
|
218887
218920
|
task_get?: number | undefined;
|
|
218888
218921
|
live?: number | undefined;
|
|
218889
|
-
languages?: number | undefined;
|
|
218890
218922
|
audits?: number | undefined;
|
|
218923
|
+
languages?: number | undefined;
|
|
218891
218924
|
versions?: number | undefined;
|
|
218892
218925
|
|
|
218893
218926
|
[key: string]: any;
|
|
@@ -218911,8 +218944,8 @@ export class AppendixLighthouseOnPageDayStatisticsRatesData implements IAppendix
|
|
|
218911
218944
|
this.tasks_ready = _data["tasks_ready"];
|
|
218912
218945
|
this.task_get = _data["task_get"];
|
|
218913
218946
|
this.live = _data["live"];
|
|
218914
|
-
this.languages = _data["languages"];
|
|
218915
218947
|
this.audits = _data["audits"];
|
|
218948
|
+
this.languages = _data["languages"];
|
|
218916
218949
|
this.versions = _data["versions"];
|
|
218917
218950
|
}
|
|
218918
218951
|
}
|
|
@@ -218934,8 +218967,8 @@ export class AppendixLighthouseOnPageDayStatisticsRatesData implements IAppendix
|
|
|
218934
218967
|
data["tasks_ready"] = this.tasks_ready;
|
|
218935
218968
|
data["task_get"] = this.task_get;
|
|
218936
218969
|
data["live"] = this.live;
|
|
218937
|
-
data["languages"] = this.languages;
|
|
218938
218970
|
data["audits"] = this.audits;
|
|
218971
|
+
data["languages"] = this.languages;
|
|
218939
218972
|
data["versions"] = this.versions;
|
|
218940
218973
|
return data;
|
|
218941
218974
|
}
|
|
@@ -218946,8 +218979,8 @@ export interface IAppendixLighthouseOnPageDayStatisticsRatesData {
|
|
|
218946
218979
|
tasks_ready?: number | undefined;
|
|
218947
218980
|
task_get?: number | undefined;
|
|
218948
218981
|
live?: number | undefined;
|
|
218949
|
-
languages?: number | undefined;
|
|
218950
218982
|
audits?: number | undefined;
|
|
218983
|
+
languages?: number | undefined;
|
|
218951
218984
|
versions?: number | undefined;
|
|
218952
218985
|
|
|
218953
218986
|
[key: string]: any;
|
|
@@ -218974,10 +219007,10 @@ export class AppendixOnPageDayStatisticsRatesData implements IAppendixOnPageDayS
|
|
|
218974
219007
|
page_screenshot?: number | undefined;
|
|
218975
219008
|
content_parsing?: number | undefined;
|
|
218976
219009
|
content_parsing_live?: number | undefined;
|
|
218977
|
-
available_filters?: number | undefined;
|
|
218978
|
-
force_stop?: number | undefined;
|
|
218979
219010
|
microdata?: number | undefined;
|
|
219011
|
+
force_stop?: number | undefined;
|
|
218980
219012
|
id_list?: number | undefined;
|
|
219013
|
+
available_filters?: number | undefined;
|
|
218981
219014
|
|
|
218982
219015
|
[key: string]: any;
|
|
218983
219016
|
|
|
@@ -219016,10 +219049,10 @@ export class AppendixOnPageDayStatisticsRatesData implements IAppendixOnPageDayS
|
|
|
219016
219049
|
this.page_screenshot = _data["page_screenshot"];
|
|
219017
219050
|
this.content_parsing = _data["content_parsing"];
|
|
219018
219051
|
this.content_parsing_live = _data["content_parsing_live"];
|
|
219019
|
-
this.available_filters = _data["available_filters"];
|
|
219020
|
-
this.force_stop = _data["force_stop"];
|
|
219021
219052
|
this.microdata = _data["microdata"];
|
|
219053
|
+
this.force_stop = _data["force_stop"];
|
|
219022
219054
|
this.id_list = _data["id_list"];
|
|
219055
|
+
this.available_filters = _data["available_filters"];
|
|
219023
219056
|
}
|
|
219024
219057
|
}
|
|
219025
219058
|
|
|
@@ -219056,10 +219089,10 @@ export class AppendixOnPageDayStatisticsRatesData implements IAppendixOnPageDayS
|
|
|
219056
219089
|
data["page_screenshot"] = this.page_screenshot;
|
|
219057
219090
|
data["content_parsing"] = this.content_parsing;
|
|
219058
219091
|
data["content_parsing_live"] = this.content_parsing_live;
|
|
219059
|
-
data["available_filters"] = this.available_filters;
|
|
219060
|
-
data["force_stop"] = this.force_stop;
|
|
219061
219092
|
data["microdata"] = this.microdata;
|
|
219093
|
+
data["force_stop"] = this.force_stop;
|
|
219062
219094
|
data["id_list"] = this.id_list;
|
|
219095
|
+
data["available_filters"] = this.available_filters;
|
|
219063
219096
|
return data;
|
|
219064
219097
|
}
|
|
219065
219098
|
}
|
|
@@ -219085,10 +219118,10 @@ export interface IAppendixOnPageDayStatisticsRatesData {
|
|
|
219085
219118
|
page_screenshot?: number | undefined;
|
|
219086
219119
|
content_parsing?: number | undefined;
|
|
219087
219120
|
content_parsing_live?: number | undefined;
|
|
219088
|
-
available_filters?: number | undefined;
|
|
219089
|
-
force_stop?: number | undefined;
|
|
219090
219121
|
microdata?: number | undefined;
|
|
219122
|
+
force_stop?: number | undefined;
|
|
219091
219123
|
id_list?: number | undefined;
|
|
219124
|
+
available_filters?: number | undefined;
|
|
219092
219125
|
|
|
219093
219126
|
[key: string]: any;
|
|
219094
219127
|
}
|
|
@@ -219207,12 +219240,12 @@ export class AppendixBacklinksDayStatisticsRatesData implements IAppendixBacklin
|
|
|
219207
219240
|
timeseries_new_lost_summary?: AppendixInfo | undefined;
|
|
219208
219241
|
competitors?: AppendixInfo | undefined;
|
|
219209
219242
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
219210
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
219211
|
-
available_filters?: number | undefined;
|
|
219212
|
-
bulk_spam_score?: AppendixInfo | undefined;
|
|
219213
219243
|
index?: number | undefined;
|
|
219214
|
-
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
219215
219244
|
id_list?: number | undefined;
|
|
219245
|
+
available_filters?: number | undefined;
|
|
219246
|
+
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
219247
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
219248
|
+
bulk_spam_score?: AppendixInfo | undefined;
|
|
219216
219249
|
|
|
219217
219250
|
[key: string]: any;
|
|
219218
219251
|
|
|
@@ -219252,12 +219285,12 @@ export class AppendixBacklinksDayStatisticsRatesData implements IAppendixBacklin
|
|
|
219252
219285
|
this.timeseries_new_lost_summary = _data["timeseries_new_lost_summary"] ? AppendixInfo.fromJS(_data["timeseries_new_lost_summary"]) : <any>undefined;
|
|
219253
219286
|
this.competitors = _data["competitors"] ? AppendixInfo.fromJS(_data["competitors"]) : <any>undefined;
|
|
219254
219287
|
this.bulk_pages_summary = _data["bulk_pages_summary"] ? AppendixInfo.fromJS(_data["bulk_pages_summary"]) : <any>undefined;
|
|
219255
|
-
this.historical_new_lost_summary = _data["historical_new_lost_summary"] ? AppendixInfo.fromJS(_data["historical_new_lost_summary"]) : <any>undefined;
|
|
219256
|
-
this.available_filters = _data["available_filters"];
|
|
219257
|
-
this.bulk_spam_score = _data["bulk_spam_score"] ? AppendixInfo.fromJS(_data["bulk_spam_score"]) : <any>undefined;
|
|
219258
219288
|
this.index = _data["index"];
|
|
219259
|
-
this.pages_summary_with_page_info = _data["pages_summary_with_page_info"] ? AppendixInfo.fromJS(_data["pages_summary_with_page_info"]) : <any>undefined;
|
|
219260
219289
|
this.id_list = _data["id_list"];
|
|
219290
|
+
this.available_filters = _data["available_filters"];
|
|
219291
|
+
this.pages_summary_with_page_info = _data["pages_summary_with_page_info"] ? AppendixInfo.fromJS(_data["pages_summary_with_page_info"]) : <any>undefined;
|
|
219292
|
+
this.historical_new_lost_summary = _data["historical_new_lost_summary"] ? AppendixInfo.fromJS(_data["historical_new_lost_summary"]) : <any>undefined;
|
|
219293
|
+
this.bulk_spam_score = _data["bulk_spam_score"] ? AppendixInfo.fromJS(_data["bulk_spam_score"]) : <any>undefined;
|
|
219261
219294
|
}
|
|
219262
219295
|
}
|
|
219263
219296
|
|
|
@@ -219295,12 +219328,12 @@ export class AppendixBacklinksDayStatisticsRatesData implements IAppendixBacklin
|
|
|
219295
219328
|
data["timeseries_new_lost_summary"] = this.timeseries_new_lost_summary ? this.timeseries_new_lost_summary?.toJSON() : <any>undefined;
|
|
219296
219329
|
data["competitors"] = this.competitors ? this.competitors?.toJSON() : <any>undefined;
|
|
219297
219330
|
data["bulk_pages_summary"] = this.bulk_pages_summary ? this.bulk_pages_summary?.toJSON() : <any>undefined;
|
|
219298
|
-
data["historical_new_lost_summary"] = this.historical_new_lost_summary ? this.historical_new_lost_summary?.toJSON() : <any>undefined;
|
|
219299
|
-
data["available_filters"] = this.available_filters;
|
|
219300
|
-
data["bulk_spam_score"] = this.bulk_spam_score ? this.bulk_spam_score?.toJSON() : <any>undefined;
|
|
219301
219331
|
data["index"] = this.index;
|
|
219302
|
-
data["pages_summary_with_page_info"] = this.pages_summary_with_page_info ? this.pages_summary_with_page_info?.toJSON() : <any>undefined;
|
|
219303
219332
|
data["id_list"] = this.id_list;
|
|
219333
|
+
data["available_filters"] = this.available_filters;
|
|
219334
|
+
data["pages_summary_with_page_info"] = this.pages_summary_with_page_info ? this.pages_summary_with_page_info?.toJSON() : <any>undefined;
|
|
219335
|
+
data["historical_new_lost_summary"] = this.historical_new_lost_summary ? this.historical_new_lost_summary?.toJSON() : <any>undefined;
|
|
219336
|
+
data["bulk_spam_score"] = this.bulk_spam_score ? this.bulk_spam_score?.toJSON() : <any>undefined;
|
|
219304
219337
|
return data;
|
|
219305
219338
|
}
|
|
219306
219339
|
}
|
|
@@ -219327,12 +219360,12 @@ export interface IAppendixBacklinksDayStatisticsRatesData {
|
|
|
219327
219360
|
timeseries_new_lost_summary?: AppendixInfo | undefined;
|
|
219328
219361
|
competitors?: AppendixInfo | undefined;
|
|
219329
219362
|
bulk_pages_summary?: AppendixInfo | undefined;
|
|
219330
|
-
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
219331
|
-
available_filters?: number | undefined;
|
|
219332
|
-
bulk_spam_score?: AppendixInfo | undefined;
|
|
219333
219363
|
index?: number | undefined;
|
|
219334
|
-
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
219335
219364
|
id_list?: number | undefined;
|
|
219365
|
+
available_filters?: number | undefined;
|
|
219366
|
+
pages_summary_with_page_info?: AppendixInfo | undefined;
|
|
219367
|
+
historical_new_lost_summary?: AppendixInfo | undefined;
|
|
219368
|
+
bulk_spam_score?: AppendixInfo | undefined;
|
|
219336
219369
|
|
|
219337
219370
|
[key: string]: any;
|
|
219338
219371
|
}
|
|
@@ -219436,8 +219469,8 @@ export class AppendixContentAnalysisDayStatisticsRatesData implements IAppendixC
|
|
|
219436
219469
|
languages?: number | undefined;
|
|
219437
219470
|
categories?: number | undefined;
|
|
219438
219471
|
errors?: number | undefined;
|
|
219439
|
-
available_filters?: number | undefined;
|
|
219440
219472
|
id_list?: number | undefined;
|
|
219473
|
+
available_filters?: number | undefined;
|
|
219441
219474
|
|
|
219442
219475
|
[key: string]: any;
|
|
219443
219476
|
|
|
@@ -219466,8 +219499,8 @@ export class AppendixContentAnalysisDayStatisticsRatesData implements IAppendixC
|
|
|
219466
219499
|
this.languages = _data["languages"];
|
|
219467
219500
|
this.categories = _data["categories"];
|
|
219468
219501
|
this.errors = _data["errors"];
|
|
219469
|
-
this.available_filters = _data["available_filters"];
|
|
219470
219502
|
this.id_list = _data["id_list"];
|
|
219503
|
+
this.available_filters = _data["available_filters"];
|
|
219471
219504
|
}
|
|
219472
219505
|
}
|
|
219473
219506
|
|
|
@@ -219494,8 +219527,8 @@ export class AppendixContentAnalysisDayStatisticsRatesData implements IAppendixC
|
|
|
219494
219527
|
data["languages"] = this.languages;
|
|
219495
219528
|
data["categories"] = this.categories;
|
|
219496
219529
|
data["errors"] = this.errors;
|
|
219497
|
-
data["available_filters"] = this.available_filters;
|
|
219498
219530
|
data["id_list"] = this.id_list;
|
|
219531
|
+
data["available_filters"] = this.available_filters;
|
|
219499
219532
|
return data;
|
|
219500
219533
|
}
|
|
219501
219534
|
}
|
|
@@ -219511,8 +219544,8 @@ export interface IAppendixContentAnalysisDayStatisticsRatesData {
|
|
|
219511
219544
|
languages?: number | undefined;
|
|
219512
219545
|
categories?: number | undefined;
|
|
219513
219546
|
errors?: number | undefined;
|
|
219514
|
-
available_filters?: number | undefined;
|
|
219515
219547
|
id_list?: number | undefined;
|
|
219548
|
+
available_filters?: number | undefined;
|
|
219516
219549
|
|
|
219517
219550
|
[key: string]: any;
|
|
219518
219551
|
}
|
|
@@ -219624,9 +219657,9 @@ export class AppendixDayStatisticsRatesData implements IAppendixDayStatisticsRat
|
|
|
219624
219657
|
day in the yyyy-MM-dd format
|
|
219625
219658
|
minute in the yyyy-MM-dd HH:mm format */
|
|
219626
219659
|
value?: string | undefined;
|
|
219660
|
+
total_traffic_analytics?: number | undefined;
|
|
219627
219661
|
total_reviews?: number | undefined;
|
|
219628
219662
|
reviews?: AppendixInfo | undefined;
|
|
219629
|
-
total_traffic_analytics?: number | undefined;
|
|
219630
219663
|
|
|
219631
219664
|
[key: string]: any;
|
|
219632
219665
|
|
|
@@ -219671,9 +219704,9 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
219671
219704
|
this.content_generation = _data["content_generation"] ? AppendixContentGenerationDayStatisticsRatesData.fromJS(_data["content_generation"]) : <any>undefined;
|
|
219672
219705
|
this.total_content_generation = _data["total_content_generation"];
|
|
219673
219706
|
this.value = _data["value"];
|
|
219707
|
+
this.total_traffic_analytics = _data["total_traffic_analytics"];
|
|
219674
219708
|
this.total_reviews = _data["total_reviews"];
|
|
219675
219709
|
this.reviews = _data["reviews"] ? AppendixInfo.fromJS(_data["reviews"]) : <any>undefined;
|
|
219676
|
-
this.total_traffic_analytics = _data["total_traffic_analytics"];
|
|
219677
219710
|
}
|
|
219678
219711
|
}
|
|
219679
219712
|
|
|
@@ -219716,9 +219749,9 @@ minute in the yyyy-MM-dd HH:mm format */
|
|
|
219716
219749
|
data["content_generation"] = this.content_generation ? this.content_generation?.toJSON() : <any>undefined;
|
|
219717
219750
|
data["total_content_generation"] = this.total_content_generation;
|
|
219718
219751
|
data["value"] = this.value;
|
|
219752
|
+
data["total_traffic_analytics"] = this.total_traffic_analytics;
|
|
219719
219753
|
data["total_reviews"] = this.total_reviews;
|
|
219720
219754
|
data["reviews"] = this.reviews ? this.reviews?.toJSON() : <any>undefined;
|
|
219721
|
-
data["total_traffic_analytics"] = this.total_traffic_analytics;
|
|
219722
219755
|
return data;
|
|
219723
219756
|
}
|
|
219724
219757
|
}
|
|
@@ -219754,9 +219787,9 @@ export interface IAppendixDayStatisticsRatesData {
|
|
|
219754
219787
|
day in the yyyy-MM-dd format
|
|
219755
219788
|
minute in the yyyy-MM-dd HH:mm format */
|
|
219756
219789
|
value?: string | undefined;
|
|
219790
|
+
total_traffic_analytics?: number | undefined;
|
|
219757
219791
|
total_reviews?: number | undefined;
|
|
219758
219792
|
reviews?: AppendixInfo | undefined;
|
|
219759
|
-
total_traffic_analytics?: number | undefined;
|
|
219760
219793
|
|
|
219761
219794
|
[key: string]: any;
|
|
219762
219795
|
}
|
|
@@ -220088,8 +220121,8 @@ export class AppendixSerpDayStatisticsMoneyData implements IAppendixSerpDayStati
|
|
|
220088
220121
|
tasks_fixed?: number | undefined;
|
|
220089
220122
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
220090
220123
|
screenshot?: number | undefined;
|
|
220091
|
-
refund_money?: number | undefined;
|
|
220092
220124
|
ai_summary?: number | undefined;
|
|
220125
|
+
refund_money?: number | undefined;
|
|
220093
220126
|
|
|
220094
220127
|
[key: string]: any;
|
|
220095
220128
|
|
|
@@ -220118,8 +220151,8 @@ export class AppendixSerpDayStatisticsMoneyData implements IAppendixSerpDayStati
|
|
|
220118
220151
|
this.tasks_fixed = _data["tasks_fixed"];
|
|
220119
220152
|
this.jobs = _data["jobs"] ? AppendixJobsSerpLimitsRatesDataInfo.fromJS(_data["jobs"]) : <any>undefined;
|
|
220120
220153
|
this.screenshot = _data["screenshot"];
|
|
220121
|
-
this.refund_money = _data["refund_money"];
|
|
220122
220154
|
this.ai_summary = _data["ai_summary"];
|
|
220155
|
+
this.refund_money = _data["refund_money"];
|
|
220123
220156
|
}
|
|
220124
220157
|
}
|
|
220125
220158
|
|
|
@@ -220146,8 +220179,8 @@ export class AppendixSerpDayStatisticsMoneyData implements IAppendixSerpDayStati
|
|
|
220146
220179
|
data["tasks_fixed"] = this.tasks_fixed;
|
|
220147
220180
|
data["jobs"] = this.jobs ? this.jobs?.toJSON() : <any>undefined;
|
|
220148
220181
|
data["screenshot"] = this.screenshot;
|
|
220149
|
-
data["refund_money"] = this.refund_money;
|
|
220150
220182
|
data["ai_summary"] = this.ai_summary;
|
|
220183
|
+
data["refund_money"] = this.refund_money;
|
|
220151
220184
|
return data;
|
|
220152
220185
|
}
|
|
220153
220186
|
}
|
|
@@ -220163,8 +220196,8 @@ export interface IAppendixSerpDayStatisticsMoneyData {
|
|
|
220163
220196
|
tasks_fixed?: number | undefined;
|
|
220164
220197
|
jobs?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
220165
220198
|
screenshot?: number | undefined;
|
|
220166
|
-
refund_money?: number | undefined;
|
|
220167
220199
|
ai_summary?: number | undefined;
|
|
220200
|
+
refund_money?: number | undefined;
|
|
220168
220201
|
|
|
220169
220202
|
[key: string]: any;
|
|
220170
220203
|
}
|
|
@@ -220186,8 +220219,8 @@ export class AppendixKeywordsDataDayStatisticsMoneyData implements IAppendixKeyw
|
|
|
220186
220219
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220187
220220
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220188
220221
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220189
|
-
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220190
220222
|
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
220223
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220191
220224
|
|
|
220192
220225
|
[key: string]: any;
|
|
220193
220226
|
|
|
@@ -220222,8 +220255,8 @@ export class AppendixKeywordsDataDayStatisticsMoneyData implements IAppendixKeyw
|
|
|
220222
220255
|
this.google_ads = _data["google_ads"] ? AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo.fromJS(_data["google_ads"]) : <any>undefined;
|
|
220223
220256
|
this.dataforseo_trends = _data["dataforseo_trends"] ? AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo.fromJS(_data["dataforseo_trends"]) : <any>undefined;
|
|
220224
220257
|
this.clickstream_data = _data["clickstream_data"] ? AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo.fromJS(_data["clickstream_data"]) : <any>undefined;
|
|
220225
|
-
this.google = _data["google"] ? AppendixBingKeywordsDataLimitsRatesDataInfo.fromJS(_data["google"]) : <any>undefined;
|
|
220226
220258
|
this.search_volume_history = _data["search_volume_history"] ? AppendixJobsSerpLimitsRatesDataInfo.fromJS(_data["search_volume_history"]) : <any>undefined;
|
|
220259
|
+
this.google = _data["google"] ? AppendixBingKeywordsDataLimitsRatesDataInfo.fromJS(_data["google"]) : <any>undefined;
|
|
220227
220260
|
}
|
|
220228
220261
|
}
|
|
220229
220262
|
|
|
@@ -220256,8 +220289,8 @@ export class AppendixKeywordsDataDayStatisticsMoneyData implements IAppendixKeyw
|
|
|
220256
220289
|
data["google_ads"] = this.google_ads ? this.google_ads?.toJSON() : <any>undefined;
|
|
220257
220290
|
data["dataforseo_trends"] = this.dataforseo_trends ? this.dataforseo_trends?.toJSON() : <any>undefined;
|
|
220258
220291
|
data["clickstream_data"] = this.clickstream_data ? this.clickstream_data?.toJSON() : <any>undefined;
|
|
220259
|
-
data["google"] = this.google ? this.google?.toJSON() : <any>undefined;
|
|
220260
220292
|
data["search_volume_history"] = this.search_volume_history ? this.search_volume_history?.toJSON() : <any>undefined;
|
|
220293
|
+
data["google"] = this.google ? this.google?.toJSON() : <any>undefined;
|
|
220261
220294
|
return data;
|
|
220262
220295
|
}
|
|
220263
220296
|
}
|
|
@@ -220279,8 +220312,8 @@ export interface IAppendixKeywordsDataDayStatisticsMoneyData {
|
|
|
220279
220312
|
google_ads?: AppendixGoogleAdsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220280
220313
|
dataforseo_trends?: AppendixDataforseoTrendsKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220281
220314
|
clickstream_data?: AppendixClickstreamDataKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220282
|
-
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220283
220315
|
search_volume_history?: AppendixJobsSerpLimitsRatesDataInfo | undefined;
|
|
220316
|
+
google?: AppendixBingKeywordsDataLimitsRatesDataInfo | undefined;
|
|
220284
220317
|
|
|
220285
220318
|
[key: string]: any;
|
|
220286
220319
|
}
|
|
@@ -220511,8 +220544,8 @@ export class AppendixAppDataDayStatisticsMoneyData implements IAppendixAppDataDa
|
|
|
220511
220544
|
locations?: number | undefined;
|
|
220512
220545
|
categories?: number | undefined;
|
|
220513
220546
|
tasks_ready?: number | undefined;
|
|
220514
|
-
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
220515
220547
|
refund_money?: number | undefined;
|
|
220548
|
+
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
220516
220549
|
|
|
220517
220550
|
[key: string]: any;
|
|
220518
220551
|
|
|
@@ -220540,8 +220573,8 @@ export class AppendixAppDataDayStatisticsMoneyData implements IAppendixAppDataDa
|
|
|
220540
220573
|
this.locations = _data["locations"];
|
|
220541
220574
|
this.categories = _data["categories"];
|
|
220542
220575
|
this.tasks_ready = _data["tasks_ready"];
|
|
220543
|
-
this.app_listings = _data["app_listings"] ? AppendixBusinessDataDayLimitsRatesDataInfo.fromJS(_data["app_listings"]) : <any>undefined;
|
|
220544
220576
|
this.refund_money = _data["refund_money"];
|
|
220577
|
+
this.app_listings = _data["app_listings"] ? AppendixBusinessDataDayLimitsRatesDataInfo.fromJS(_data["app_listings"]) : <any>undefined;
|
|
220545
220578
|
}
|
|
220546
220579
|
}
|
|
220547
220580
|
|
|
@@ -220567,8 +220600,8 @@ export class AppendixAppDataDayStatisticsMoneyData implements IAppendixAppDataDa
|
|
|
220567
220600
|
data["locations"] = this.locations;
|
|
220568
220601
|
data["categories"] = this.categories;
|
|
220569
220602
|
data["tasks_ready"] = this.tasks_ready;
|
|
220570
|
-
data["app_listings"] = this.app_listings ? this.app_listings?.toJSON() : <any>undefined;
|
|
220571
220603
|
data["refund_money"] = this.refund_money;
|
|
220604
|
+
data["app_listings"] = this.app_listings ? this.app_listings?.toJSON() : <any>undefined;
|
|
220572
220605
|
return data;
|
|
220573
220606
|
}
|
|
220574
220607
|
}
|
|
@@ -220583,8 +220616,8 @@ export interface IAppendixAppDataDayStatisticsMoneyData {
|
|
|
220583
220616
|
locations?: number | undefined;
|
|
220584
220617
|
categories?: number | undefined;
|
|
220585
220618
|
tasks_ready?: number | undefined;
|
|
220586
|
-
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
220587
220619
|
refund_money?: number | undefined;
|
|
220620
|
+
app_listings?: AppendixBusinessDataDayLimitsRatesDataInfo | undefined;
|
|
220588
220621
|
|
|
220589
220622
|
[key: string]: any;
|
|
220590
220623
|
}
|