facebookbusiness 22.0.0 → 22.0.2
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.
- checksums.yaml +4 -4
- data/lib/facebook_ads/ad_objects/ad_account.rb +14 -1
- data/lib/facebook_ads/ad_objects/ad_account_ad_rules_history.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_account_ad_volume.rb +20 -0
- data/lib/facebook_ads/ad_objects/{instagram_carousel.rb → ad_account_amount_spent_history.rb} +7 -12
- data/lib/facebook_ads/ad_objects/ad_account_delivery_estimate.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_account_live_video_advertiser.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_account_optimization_goals_aemv2_eligibility.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_account_spend_cap_change_history.rb +28 -0
- data/lib/facebook_ads/ad_objects/ad_account_targeting_unified.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_account_user_settings.rb +3 -0
- data/lib/facebook_ads/ad_objects/ad_asset_feed_spec.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_campaign_delivery_estimate.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_campaign_group_advantage_state.rb +28 -0
- data/lib/facebook_ads/ad_objects/ad_campaign_issues_info.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_creative.rb +2 -1
- data/lib/facebook_ads/ad_objects/ad_creative_branded_content_ads.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_creative_link_data_call_to_action.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_creative_object_story_spec.rb +0 -1
- data/lib/facebook_ads/ad_objects/ad_creative_regional_regulation_disclaimer.rb +2 -0
- data/lib/facebook_ads/ad_objects/ad_rule_history.rb +1 -0
- data/lib/facebook_ads/ad_objects/ad_set.rb +4 -0
- data/lib/facebook_ads/ad_objects/ad_video.rb +2 -6
- data/lib/facebook_ads/ad_objects/adgroup_issues_info.rb +1 -0
- data/lib/facebook_ads/ad_objects/ads_insights.rb +15 -0
- data/lib/facebook_ads/ad_objects/{ads_pixel_capi_setup_quality.rb → ads_pixel_capi_integration_quality.rb} +1 -1
- data/lib/facebook_ads/ad_objects/ads_quick_views.rb +1 -0
- data/lib/facebook_ads/ad_objects/ads_user_settings.rb +3 -0
- data/lib/facebook_ads/ad_objects/ads_value_adjustment_rule_collection.rb +8 -1
- data/lib/facebook_ads/ad_objects/application.rb +4 -0
- data/lib/facebook_ads/ad_objects/branded_content_shadow_ig_media_id.rb +1 -0
- data/lib/facebook_ads/ad_objects/business.rb +20 -8
- data/lib/facebook_ads/ad_objects/business_agreement.rb +1 -0
- data/lib/facebook_ads/ad_objects/business_asset_group.rb +1 -0
- data/lib/facebook_ads/ad_objects/business_asset_sharing_agreement.rb +1 -0
- data/lib/facebook_ads/ad_objects/business_owned_object_on_behalf_of_request.rb +1 -0
- data/lib/facebook_ads/ad_objects/campaign.rb +1 -0
- data/lib/facebook_ads/ad_objects/catalog_collection.rb +27 -0
- data/lib/facebook_ads/ad_objects/creative_multicell_test_config.rb +26 -0
- data/lib/facebook_ads/ad_objects/ctx_default_optimization_config.rb +26 -0
- data/lib/facebook_ads/ad_objects/custom_audience.rb +10 -0
- data/lib/facebook_ads/ad_objects/custom_audience_health.rb +25 -0
- data/lib/facebook_ads/ad_objects/event.rb +1 -0
- data/lib/facebook_ads/ad_objects/home_listing.rb +1 -0
- data/lib/facebook_ads/ad_objects/ig_user.rb +10 -0
- data/lib/facebook_ads/ad_objects/ig_user_for_ig_only_api.rb +4 -1
- data/lib/facebook_ads/ad_objects/insights_value.rb +1 -0
- data/lib/facebook_ads/ad_objects/lead_gen_form_preview_details.rb +4 -0
- data/lib/facebook_ads/ad_objects/message_delivery_estimate.rb +2 -0
- data/lib/facebook_ads/ad_objects/page.rb +21 -8
- data/lib/facebook_ads/ad_objects/page_call_to_action.rb +1 -0
- data/lib/facebook_ads/ad_objects/product_catalog.rb +1 -0
- data/lib/facebook_ads/ad_objects/product_item.rb +2 -0
- data/lib/facebook_ads/ad_objects/regional_regulation_identities.rb +4 -0
- data/lib/facebook_ads/ad_objects/server_side/attribution_data.rb +21 -3
- data/lib/facebook_ads/ad_objects/server_side/custom_data.rb +21 -0
- data/lib/facebook_ads/ad_objects/server_side/original_event_data.rb +39 -3
- data/lib/facebook_ads/ad_objects/{instagram_comment.rb → store_location.rb} +9 -9
- data/lib/facebook_ads/ad_objects/targeting_subscriber_universe.rb +1 -0
- data/lib/facebook_ads/ad_objects/threads_user.rb +26 -0
- data/lib/facebook_ads/ad_objects/user.rb +2 -2
- data/lib/facebook_ads/ad_objects/vehicle.rb +1 -0
- data/lib/facebook_ads/ad_objects/vehicle_offer.rb +1 -0
- data/lib/facebook_ads/version.rb +1 -1
- metadata +20 -9
- data/lib/facebook_ads/ad_objects/instagram_media.rb +0 -38
- data/lib/facebook_ads/ad_objects/negative_keyword_list.rb +0 -33
@@ -29,15 +29,29 @@ module FacebookAds
|
|
29
29
|
# A Unix timestamp in seconds indicating when the original event occurred.
|
30
30
|
attr_accessor :event_time
|
31
31
|
|
32
|
+
# The order ID for this transaction as a string.
|
33
|
+
attr_accessor :order_id
|
34
|
+
|
35
|
+
# A unique string chosen by the advertiser.
|
36
|
+
attr_accessor :event_id
|
37
|
+
|
32
38
|
# @param [String] event_name
|
33
39
|
# @param [int] event_time
|
34
|
-
|
40
|
+
# @param [String] order_id
|
41
|
+
# @param [String] event_id
|
42
|
+
def initialize(event_name: nil, event_time: nil, order_id: nil, event_id: nil)
|
35
43
|
unless event_name.nil?
|
36
44
|
self.event_name = event_name
|
37
45
|
end
|
38
46
|
unless event_time.nil?
|
39
47
|
self.event_time = event_time
|
40
48
|
end
|
49
|
+
unless order_id.nil?
|
50
|
+
self.order_id = order_id
|
51
|
+
end
|
52
|
+
unless event_id.nil?
|
53
|
+
self.event_id = event_id
|
54
|
+
end
|
41
55
|
end
|
42
56
|
|
43
57
|
# build the object using the input hash
|
@@ -55,6 +69,14 @@ module FacebookAds
|
|
55
69
|
if attributes.has_key?(:'event_time')
|
56
70
|
self.event_time = attributes[:'event_time']
|
57
71
|
end
|
72
|
+
|
73
|
+
if attributes.has_key?(:'order_id')
|
74
|
+
self.order_id = attributes[:'order_id']
|
75
|
+
end
|
76
|
+
|
77
|
+
if attributes.has_key?(:'event_id')
|
78
|
+
self.event_id = attributes[:'event_id']
|
79
|
+
end
|
58
80
|
end
|
59
81
|
|
60
82
|
# Checks equality by comparing each attribute.
|
@@ -62,7 +84,9 @@ module FacebookAds
|
|
62
84
|
return true if self.equal?(o)
|
63
85
|
self.class == o.class &&
|
64
86
|
event_name == o.event_name &&
|
65
|
-
event_time == o.event_time
|
87
|
+
event_time == o.event_time &&
|
88
|
+
order_id == o.order_id &&
|
89
|
+
event_id == o.event_id
|
66
90
|
end
|
67
91
|
|
68
92
|
# @see the `==` method
|
@@ -74,7 +98,7 @@ module FacebookAds
|
|
74
98
|
# @return [Fixnum] Hash code
|
75
99
|
def hash
|
76
100
|
[
|
77
|
-
event_name, event_time,
|
101
|
+
event_name, event_time, order_id, event_id,
|
78
102
|
].hash
|
79
103
|
end
|
80
104
|
|
@@ -86,6 +110,12 @@ module FacebookAds
|
|
86
110
|
unless event_time.nil?
|
87
111
|
hash['event_time'] = event_time
|
88
112
|
end
|
113
|
+
unless order_id.nil?
|
114
|
+
hash['order_id'] = order_id
|
115
|
+
end
|
116
|
+
unless event_id.nil?
|
117
|
+
hash['event_id'] = event_id
|
118
|
+
end
|
89
119
|
hash.to_s
|
90
120
|
end
|
91
121
|
|
@@ -99,6 +129,12 @@ module FacebookAds
|
|
99
129
|
unless event_time.nil?
|
100
130
|
hash['event_time'] = event_time
|
101
131
|
end
|
132
|
+
unless order_id.nil?
|
133
|
+
hash['order_id'] = order_id
|
134
|
+
end
|
135
|
+
unless event_id.nil?
|
136
|
+
hash['event_id'] = event_id
|
137
|
+
end
|
102
138
|
hash
|
103
139
|
end
|
104
140
|
|
@@ -13,17 +13,17 @@ module FacebookAds
|
|
13
13
|
# on github and we'll fix in our codegen framework. We'll not be able to accept
|
14
14
|
# pull request for this class.
|
15
15
|
|
16
|
-
class
|
16
|
+
class StoreLocation < AdObject
|
17
17
|
|
18
|
-
field :
|
19
|
-
field :
|
18
|
+
field :full_address, 'string'
|
19
|
+
field :hours, 'object'
|
20
20
|
field :id, 'string'
|
21
|
-
field :
|
22
|
-
field :
|
23
|
-
field :
|
24
|
-
field :
|
25
|
-
field :
|
26
|
-
|
21
|
+
field :phone_number, 'string'
|
22
|
+
field :pickup_options, { list: 'string' }
|
23
|
+
field :price_range, 'string'
|
24
|
+
field :store_code, 'string'
|
25
|
+
field :zip_code, 'string'
|
26
|
+
has_no_post
|
27
27
|
has_no_delete
|
28
28
|
|
29
29
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2
|
+
# All rights reserved.
|
3
|
+
|
4
|
+
# This source code is licensed under the license found in the
|
5
|
+
# LICENSE file in the root directory of this source tree.
|
6
|
+
|
7
|
+
# FB:AUTOGEN
|
8
|
+
|
9
|
+
module FacebookAds
|
10
|
+
# This class is auto-generated.
|
11
|
+
|
12
|
+
# For any issues or feature requests related to this class, please let us know
|
13
|
+
# on github and we'll fix in our codegen framework. We'll not be able to accept
|
14
|
+
# pull request for this class.
|
15
|
+
|
16
|
+
class ThreadsUser < AdObject
|
17
|
+
|
18
|
+
field :threads_user_id, 'string'
|
19
|
+
field :threads_user_profile_pic, 'string'
|
20
|
+
has_no_id
|
21
|
+
has_no_get
|
22
|
+
has_no_post
|
23
|
+
has_no_delete
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
@@ -366,9 +366,9 @@ module FacebookAds
|
|
366
366
|
api.has_param :cover_photo, 'file'
|
367
367
|
api.has_param :currency, 'string'
|
368
368
|
api.has_param :description, 'string'
|
369
|
-
api.has_param :end_time, '
|
369
|
+
api.has_param :end_time, 'datetime'
|
370
370
|
api.has_param :external_event_name, 'string'
|
371
|
-
api.has_param :external_event_start_time, '
|
371
|
+
api.has_param :external_event_start_time, 'datetime'
|
372
372
|
api.has_param :external_event_uri, 'string'
|
373
373
|
api.has_param :external_fundraiser_uri, 'string'
|
374
374
|
api.has_param :external_id, 'string'
|
@@ -167,6 +167,7 @@ module FacebookAds
|
|
167
167
|
field :sale_price, 'string'
|
168
168
|
field :sanitized_images, { list: 'string' }
|
169
169
|
field :state_of_vehicle, 'string'
|
170
|
+
field :tags, { list: 'string' }
|
170
171
|
field :title, 'string'
|
171
172
|
field :transmission, 'string'
|
172
173
|
field :trim, 'string'
|
data/lib/facebook_ads/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facebookbusiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 22.0.
|
4
|
+
version: 22.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Facebook
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -42,16 +42,22 @@ dependencies:
|
|
42
42
|
name: faraday-multipart
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 1.0.4
|
48
|
+
- - "~>"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '1.0'
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- - "
|
55
|
+
- - ">="
|
53
56
|
- !ruby/object:Gem::Version
|
54
57
|
version: 1.0.4
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.0'
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: json
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -261,6 +267,7 @@ files:
|
|
261
267
|
- lib/facebook_ads/ad_objects/ad_account_ad_volume.rb
|
262
268
|
- lib/facebook_ads/ad_objects/ad_account_ads_recommended_audios.rb
|
263
269
|
- lib/facebook_ads/ad_objects/ad_account_all_payment_methods.rb
|
270
|
+
- lib/facebook_ads/ad_objects/ad_account_amount_spent_history.rb
|
264
271
|
- lib/facebook_ads/ad_objects/ad_account_app_setup_requirements.rb
|
265
272
|
- lib/facebook_ads/ad_objects/ad_account_asl_schedule.rb
|
266
273
|
- lib/facebook_ads/ad_objects/ad_account_bank_info_list.rb
|
@@ -288,6 +295,7 @@ files:
|
|
288
295
|
- lib/facebook_ads/ad_objects/ad_account_recommended_camapaign_budget.rb
|
289
296
|
- lib/facebook_ads/ad_objects/ad_account_related_ico_study.rb
|
290
297
|
- lib/facebook_ads/ad_objects/ad_account_smart_suggested_ads.rb
|
298
|
+
- lib/facebook_ads/ad_objects/ad_account_spend_cap_change_history.rb
|
291
299
|
- lib/facebook_ads/ad_objects/ad_account_spend_limit.rb
|
292
300
|
- lib/facebook_ads/ad_objects/ad_account_subscribed_apps.rb
|
293
301
|
- lib/facebook_ads/ad_objects/ad_account_subsidy_amount_details.rb
|
@@ -338,6 +346,7 @@ files:
|
|
338
346
|
- lib/facebook_ads/ad_objects/ad_campaign_delivery_stats.rb
|
339
347
|
- lib/facebook_ads/ad_objects/ad_campaign_delivery_stats_unsupported_reasons.rb
|
340
348
|
- lib/facebook_ads/ad_objects/ad_campaign_frequency_control_specs.rb
|
349
|
+
- lib/facebook_ads/ad_objects/ad_campaign_group_advantage_state.rb
|
341
350
|
- lib/facebook_ads/ad_objects/ad_campaign_group_incremental_conversion_optimization_config.rb
|
342
351
|
- lib/facebook_ads/ad_objects/ad_campaign_group_metrics_metadata.rb
|
343
352
|
- lib/facebook_ads/ad_objects/ad_campaign_group_stats.rb
|
@@ -487,7 +496,7 @@ files:
|
|
487
496
|
- lib/facebook_ads/ad_objects/ads_pivot_rules.rb
|
488
497
|
- lib/facebook_ads/ad_objects/ads_pixel.rb
|
489
498
|
- lib/facebook_ads/ad_objects/ads_pixel_capability_override.rb
|
490
|
-
- lib/facebook_ads/ad_objects/
|
499
|
+
- lib/facebook_ads/ad_objects/ads_pixel_capi_integration_quality.rb
|
491
500
|
- lib/facebook_ads/ad_objects/ads_pixel_delivery_recommendations.rb
|
492
501
|
- lib/facebook_ads/ad_objects/ads_pixel_domain_control_rule.rb
|
493
502
|
- lib/facebook_ads/ad_objects/ads_pixel_domain_last_fired_time.rb
|
@@ -629,6 +638,7 @@ files:
|
|
629
638
|
- lib/facebook_ads/ad_objects/cass_setup_offline_event_set_progress.rb
|
630
639
|
- lib/facebook_ads/ad_objects/catalog_advertiser_insight.rb
|
631
640
|
- lib/facebook_ads/ad_objects/catalog_based_targeting.rb
|
641
|
+
- lib/facebook_ads/ad_objects/catalog_collection.rb
|
632
642
|
- lib/facebook_ads/ad_objects/catalog_content_version_config.rb
|
633
643
|
- lib/facebook_ads/ad_objects/catalog_item_app_links.rb
|
634
644
|
- lib/facebook_ads/ad_objects/catalog_item_channels_to_integrity_status.rb
|
@@ -680,11 +690,13 @@ files:
|
|
680
690
|
- lib/facebook_ads/ad_objects/cpas_setup_page_structure_progress.rb
|
681
691
|
- lib/facebook_ads/ad_objects/creative_asset_tag.rb
|
682
692
|
- lib/facebook_ads/ad_objects/creative_history.rb
|
693
|
+
- lib/facebook_ads/ad_objects/creative_multicell_test_config.rb
|
683
694
|
- lib/facebook_ads/ad_objects/creator_asset_creative.rb
|
684
695
|
- lib/facebook_ads/ad_objects/credit_card.rb
|
685
696
|
- lib/facebook_ads/ad_objects/credit_partition_action_options.rb
|
686
697
|
- lib/facebook_ads/ad_objects/crm_address.rb
|
687
698
|
- lib/facebook_ads/ad_objects/ctwa_whats_app_numbers_info.rb
|
699
|
+
- lib/facebook_ads/ad_objects/ctx_default_optimization_config.rb
|
688
700
|
- lib/facebook_ads/ad_objects/ctx_optimization_eligibility.rb
|
689
701
|
- lib/facebook_ads/ad_objects/ctx_partner_app_welcome_message_flow.rb
|
690
702
|
- lib/facebook_ads/ad_objects/currency.rb
|
@@ -694,6 +706,7 @@ files:
|
|
694
706
|
- lib/facebook_ads/ad_objects/custom_audience_capabilities.rb
|
695
707
|
- lib/facebook_ads/ad_objects/custom_audience_data_source.rb
|
696
708
|
- lib/facebook_ads/ad_objects/custom_audience_group.rb
|
709
|
+
- lib/facebook_ads/ad_objects/custom_audience_health.rb
|
697
710
|
- lib/facebook_ads/ad_objects/custom_audience_salts.rb
|
698
711
|
- lib/facebook_ads/ad_objects/custom_audience_session.rb
|
699
712
|
- lib/facebook_ads/ad_objects/custom_audience_shared_account_campaign_info.rb
|
@@ -801,11 +814,8 @@ files:
|
|
801
814
|
- lib/facebook_ads/ad_objects/image_reference_match.rb
|
802
815
|
- lib/facebook_ads/ad_objects/insights_result.rb
|
803
816
|
- lib/facebook_ads/ad_objects/insights_value.rb
|
804
|
-
- lib/facebook_ads/ad_objects/instagram_carousel.rb
|
805
|
-
- lib/facebook_ads/ad_objects/instagram_comment.rb
|
806
817
|
- lib/facebook_ads/ad_objects/instagram_insights_result.rb
|
807
818
|
- lib/facebook_ads/ad_objects/instagram_insights_value.rb
|
808
|
-
- lib/facebook_ads/ad_objects/instagram_media.rb
|
809
819
|
- lib/facebook_ads/ad_objects/instagram_related_product_tags.rb
|
810
820
|
- lib/facebook_ads/ad_objects/instagram_shopping_merchant_review_message.rb
|
811
821
|
- lib/facebook_ads/ad_objects/instagram_user.rb
|
@@ -882,7 +892,6 @@ files:
|
|
882
892
|
- lib/facebook_ads/ad_objects/mix_insights_result.rb
|
883
893
|
- lib/facebook_ads/ad_objects/music_video_copyright.rb
|
884
894
|
- lib/facebook_ads/ad_objects/music_work_copyright.rb
|
885
|
-
- lib/facebook_ads/ad_objects/negative_keyword_list.rb
|
886
895
|
- lib/facebook_ads/ad_objects/null_node.rb
|
887
896
|
- lib/facebook_ads/ad_objects/offline_conversion_data_set.rb
|
888
897
|
- lib/facebook_ads/ad_objects/offline_conversion_data_set_activities.rb
|
@@ -1087,6 +1096,7 @@ files:
|
|
1087
1096
|
- lib/facebook_ads/ad_objects/split_test_winner.rb
|
1088
1097
|
- lib/facebook_ads/ad_objects/status.rb
|
1089
1098
|
- lib/facebook_ads/ad_objects/store_catalog_settings.rb
|
1099
|
+
- lib/facebook_ads/ad_objects/store_location.rb
|
1090
1100
|
- lib/facebook_ads/ad_objects/stories.rb
|
1091
1101
|
- lib/facebook_ads/ad_objects/stream_filter.rb
|
1092
1102
|
- lib/facebook_ads/ad_objects/system_user.rb
|
@@ -1120,6 +1130,7 @@ files:
|
|
1120
1130
|
- lib/facebook_ads/ad_objects/third_party_partner_panel_request.rb
|
1121
1131
|
- lib/facebook_ads/ad_objects/third_party_partner_panel_scheduled.rb
|
1122
1132
|
- lib/facebook_ads/ad_objects/third_party_partner_viewability_request.rb
|
1133
|
+
- lib/facebook_ads/ad_objects/threads_user.rb
|
1123
1134
|
- lib/facebook_ads/ad_objects/time_suggestion.rb
|
1124
1135
|
- lib/facebook_ads/ad_objects/timezone_offset.rb
|
1125
1136
|
- lib/facebook_ads/ad_objects/tracking_and_conversion_with_defaults.rb
|
@@ -1,38 +0,0 @@
|
|
1
|
-
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2
|
-
# All rights reserved.
|
3
|
-
|
4
|
-
# This source code is licensed under the license found in the
|
5
|
-
# LICENSE file in the root directory of this source tree.
|
6
|
-
|
7
|
-
# FB:AUTOGEN
|
8
|
-
|
9
|
-
module FacebookAds
|
10
|
-
# This class is auto-generated.
|
11
|
-
|
12
|
-
# For any issues or feature requests related to this class, please let us know
|
13
|
-
# on github and we'll fix in our codegen framework. We'll not be able to accept
|
14
|
-
# pull request for this class.
|
15
|
-
|
16
|
-
class InstagramMedia < AdObject
|
17
|
-
|
18
|
-
field :caption_text, 'string'
|
19
|
-
field :comment_count, 'int'
|
20
|
-
field :content_type, 'int'
|
21
|
-
field :display_url, 'string'
|
22
|
-
field :filter_name, 'string'
|
23
|
-
field :id, 'string'
|
24
|
-
field :ig_media_id, 'string'
|
25
|
-
field :latitude, 'double'
|
26
|
-
field :like_count, 'int'
|
27
|
-
field :location, 'Location'
|
28
|
-
field :location_name, 'string'
|
29
|
-
field :longitude, 'double'
|
30
|
-
field :owner_instagram_user, 'InstagramUser'
|
31
|
-
field :permalink, 'string'
|
32
|
-
field :taken_at, 'datetime'
|
33
|
-
field :video_url, 'string'
|
34
|
-
has_no_post
|
35
|
-
has_no_delete
|
36
|
-
|
37
|
-
end
|
38
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2
|
-
# All rights reserved.
|
3
|
-
|
4
|
-
# This source code is licensed under the license found in the
|
5
|
-
# LICENSE file in the root directory of this source tree.
|
6
|
-
|
7
|
-
# FB:AUTOGEN
|
8
|
-
|
9
|
-
module FacebookAds
|
10
|
-
# This class is auto-generated.
|
11
|
-
|
12
|
-
# For any issues or feature requests related to this class, please let us know
|
13
|
-
# on github and we'll fix in our codegen framework. We'll not be able to accept
|
14
|
-
# pull request for this class.
|
15
|
-
|
16
|
-
class NegativeKeywordList < AdObject
|
17
|
-
|
18
|
-
field :applied_active_ad_campaign_groups, { list: 'hash' }
|
19
|
-
field :applied_inactive_ad_campaign_groups, { list: 'hash' }
|
20
|
-
field :creator_id, 'string'
|
21
|
-
field :id, 'string'
|
22
|
-
field :is_fully_reviewed, 'bool'
|
23
|
-
field :last_update_time, 'datetime'
|
24
|
-
field :last_update_user_id, 'string'
|
25
|
-
field :list_name, 'string'
|
26
|
-
field :total_approved_keyword_count, 'int'
|
27
|
-
field :total_declined_keyword_count, 'int'
|
28
|
-
field :total_negative_keyword_count, 'int'
|
29
|
-
field :total_validated_keyword_count, 'int'
|
30
|
-
has_no_delete
|
31
|
-
|
32
|
-
end
|
33
|
-
end
|