lib/twitter-ads/targeting_criteria/tv_show.rb
# frozen_string_literal: true
# Copyright (C) 2019 Twitter, Inc.
module TwitterAds
class TVShow
include TwitterAds::DSL
include TwitterAds::Resource
property :id, read_only: true
property :name, read_only: true
property :estimated_users, read_only: true
property :genre, read_only: true
RESOURCE_COLLECTION = "/#{TwitterAds::API_VERSION}/" \
'targeting_criteria/tv_shows' # @api private
def initialize(account)
@account = account
self
end
end
end