@@ -1050,6 +1050,7 @@ public APINodeList<AdActivity> getLastResponse() {
1050
1050
"after",
1051
1051
"business_id",
1052
1052
"category",
1053
+ "data_source",
1053
1054
"extra_oids",
1054
1055
"limit",
1055
1056
"oid",
@@ -1154,6 +1155,15 @@ public APIRequestGetActivities setCategory (String category) {
1154
1155
return this;
1155
1156
}
1156
1157
1158
+ public APIRequestGetActivities setDataSource (AdActivity.EnumDataSource dataSource) {
1159
+ this.setParam("data_source", dataSource);
1160
+ return this;
1161
+ }
1162
+ public APIRequestGetActivities setDataSource (String dataSource) {
1163
+ this.setParam("data_source", dataSource);
1164
+ return this;
1165
+ }
1166
+
1157
1167
public APIRequestGetActivities setExtraOids (List<String> extraOids) {
1158
1168
this.setParam("extra_oids", extraOids);
1159
1169
return this;
@@ -10106,6 +10116,7 @@ public AdVideo getLastResponse() {
10106
10116
"composer_type",
10107
10117
"container_type",
10108
10118
"content_category",
10119
+ "creative_tools",
10109
10120
"description",
10110
10121
"embeddable",
10111
10122
"end_offset",
@@ -10159,6 +10170,7 @@ public AdVideo getLastResponse() {
10159
10170
"upload_session_id",
10160
10171
"upload_setting_properties",
10161
10172
"video_file_chunk",
10173
+ "video_id_original",
10162
10174
"video_start_time_ms",
10163
10175
"waterfall_id",
10164
10176
"file",
@@ -10330,6 +10342,11 @@ public APIRequestCreateAdVideo setContentCategory (String contentCategory) {
10330
10342
return this;
10331
10343
}
10332
10344
10345
+ public APIRequestCreateAdVideo setCreativeTools (String creativeTools) {
10346
+ this.setParam("creative_tools", creativeTools);
10347
+ return this;
10348
+ }
10349
+
10333
10350
public APIRequestCreateAdVideo setDescription (String description) {
10334
10351
this.setParam("description", description);
10335
10352
return this;
@@ -10733,6 +10750,11 @@ public APIRequestCreateAdVideo setVideoFileChunk (byte[] videoFileChunk) {
10733
10750
return this;
10734
10751
}
10735
10752
10753
+ public APIRequestCreateAdVideo setVideoIdOriginal (String videoIdOriginal) {
10754
+ this.setParam("video_id_original", videoIdOriginal);
10755
+ return this;
10756
+ }
10757
+
10736
10758
public APIRequestCreateAdVideo setVideoStartTimeMs (Long videoStartTimeMs) {
10737
10759
this.setParam("video_start_time_ms", videoStartTimeMs);
10738
10760
return this;
@@ -14351,6 +14373,7 @@ public APINodeList<Campaign> getLastResponse() {
14351
14373
"source_campaign_id",
14352
14374
"special_ad_categories",
14353
14375
"special_ad_category",
14376
+ "special_ad_category_country",
14354
14377
"spend_cap",
14355
14378
"start_time",
14356
14379
"status",
@@ -14673,6 +14696,13 @@ public APIRequestGetCampaigns requestSpecialAdCategoryField (boolean value) {
14673
14696
this.requestField("special_ad_category", value);
14674
14697
return this;
14675
14698
}
14699
+ public APIRequestGetCampaigns requestSpecialAdCategoryCountryField () {
14700
+ return this.requestSpecialAdCategoryCountryField(true);
14701
+ }
14702
+ public APIRequestGetCampaigns requestSpecialAdCategoryCountryField (boolean value) {
14703
+ this.requestField("special_ad_category_country", value);
14704
+ return this;
14705
+ }
14676
14706
public APIRequestGetCampaigns requestSpendCapField () {
14677
14707
return this.requestSpendCapField(true);
14678
14708
}
@@ -14738,6 +14768,7 @@ public Campaign getLastResponse() {
14738
14768
"promoted_object",
14739
14769
"source_campaign_id",
14740
14770
"special_ad_categories",
14771
+ "special_ad_category_country",
14741
14772
"spend_cap",
14742
14773
"status",
14743
14774
"topline_id",
@@ -14905,6 +14936,15 @@ public APIRequestCreateCampaign setSpecialAdCategories (String specialAdCategori
14905
14936
return this;
14906
14937
}
14907
14938
14939
+ public APIRequestCreateCampaign setSpecialAdCategoryCountry (List<Campaign.EnumSpecialAdCategoryCountry> specialAdCategoryCountry) {
14940
+ this.setParam("special_ad_category_country", specialAdCategoryCountry);
14941
+ return this;
14942
+ }
14943
+ public APIRequestCreateCampaign setSpecialAdCategoryCountry (String specialAdCategoryCountry) {
14944
+ this.setParam("special_ad_category_country", specialAdCategoryCountry);
14945
+ return this;
14946
+ }
14947
+
14908
14948
public APIRequestCreateCampaign setSpendCap (Long spendCap) {
14909
14949
this.setParam("spend_cap", spendCap);
14910
14950
return this;
@@ -15015,6 +15055,7 @@ public APINodeList<Campaign> getLastResponse() {
15015
15055
"source_campaign_id",
15016
15056
"special_ad_categories",
15017
15057
"special_ad_category",
15058
+ "special_ad_category_country",
15018
15059
"spend_cap",
15019
15060
"start_time",
15020
15061
"status",
@@ -15319,6 +15360,13 @@ public APIRequestGetCampaignsByLabels requestSpecialAdCategoryField (boolean val
15319
15360
this.requestField("special_ad_category", value);
15320
15361
return this;
15321
15362
}
15363
+ public APIRequestGetCampaignsByLabels requestSpecialAdCategoryCountryField () {
15364
+ return this.requestSpecialAdCategoryCountryField(true);
15365
+ }
15366
+ public APIRequestGetCampaignsByLabels requestSpecialAdCategoryCountryField (boolean value) {
15367
+ this.requestField("special_ad_category_country", value);
15368
+ return this;
15369
+ }
15322
15370
public APIRequestGetCampaignsByLabels requestSpendCapField () {
15323
15371
return this.requestSpendCapField(true);
15324
15372
}
@@ -26682,6 +26730,8 @@ public static enum EnumCurrency {
26682
26730
VALUE_TRY("TRY"),
26683
26731
@SerializedName("TWD")
26684
26732
VALUE_TWD("TWD"),
26733
+ @SerializedName("UAH")
26734
+ VALUE_UAH("UAH"),
26685
26735
@SerializedName("USD")
26686
26736
VALUE_USD("USD"),
26687
26737
@SerializedName("UYU")
@@ -26709,12 +26759,6 @@ public static enum EnumPermittedTasks {
26709
26759
VALUE_ADVERTISE("ADVERTISE"),
26710
26760
@SerializedName("ANALYZE")
26711
26761
VALUE_ANALYZE("ANALYZE"),
26712
- @SerializedName("CREATIVE")
26713
- VALUE_CREATIVE("CREATIVE"),
26714
- @SerializedName("DRAFT")
26715
- VALUE_DRAFT("DRAFT"),
26716
- @SerializedName("FB_EMPLOYEE_DSO_ADVERTISE")
26717
- VALUE_FB_EMPLOYEE_DSO_ADVERTISE("FB_EMPLOYEE_DSO_ADVERTISE"),
26718
26762
@SerializedName("MANAGE")
26719
26763
VALUE_MANAGE("MANAGE"),
26720
26764
;
@@ -26736,12 +26780,6 @@ public static enum EnumTasks {
26736
26780
VALUE_ADVERTISE("ADVERTISE"),
26737
26781
@SerializedName("ANALYZE")
26738
26782
VALUE_ANALYZE("ANALYZE"),
26739
- @SerializedName("CREATIVE")
26740
- VALUE_CREATIVE("CREATIVE"),
26741
- @SerializedName("DRAFT")
26742
- VALUE_DRAFT("DRAFT"),
26743
- @SerializedName("FB_EMPLOYEE_DSO_ADVERTISE")
26744
- VALUE_FB_EMPLOYEE_DSO_ADVERTISE("FB_EMPLOYEE_DSO_ADVERTISE"),
26745
26783
@SerializedName("MANAGE")
26746
26784
VALUE_MANAGE("MANAGE"),
26747
26785
;
0 commit comments