There are some [optional parameters](https://developers.facebook.com/docs/marketing-api/reference/product-catalog/product_feeds/#Creating) when creating an AdProductFeed that would be useful to be able to pass in to override the defaults. Example: Currently only `name` and `schedule` are sent: ```ruby catalog.create_ad_product_feed( name: 'sample_feed', schedule: { url: 'https://example.com/sample.csv', interval: 'HOURLY' } ) ``` This would be very useful to have instead: ```ruby catalog.create_ad_product_feed( name: 'sample_feed', schedule: { url: 'https://example.com/sample.csv', interval: 'HOURLY' }, options: { country: 'UK', default_currency: 'GBP' } ) ```