Closed euisan closed 4 years ago
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. Thank you for your contributions.
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information.
When I request
delivery_estimate
from edges ofad_account
, it raisedTypeError
.estimate_dau
andestimate_mau
inAd Account Delivery Estimate
defined asobject
like below, but both fields returned asinteger
from API.https://github.com/facebook/facebook-ruby-ads-sdk/blob/b704d31bb0a94596078e05cb08fbe4d17732c7d1/lib/facebook_ads/ad_objects/ad_account_delivery_estimate.rb#L54 https://github.com/facebook/facebook-ruby-ads-sdk/blob/b704d31bb0a94596078e05cb08fbe4d17732c7d1/lib/facebook_ads/ad_objects/ad_account_delivery_estimate.rb#L55
Other types (like
string_type
orlist
) has several ways to handling if inputted different type of value what you expected are inputted. butobject
type is not, it's always trying parseJSON
.bid_estimate
defined asobject
, and it occurredTypeError
too. becausebid_estimate
already has Hash at this point, not JSON string.I tried like below...