class Google::Apis::DfareportingV3_4::Country
Contains information about a country that can be targeted by ads.
Attributes
Country
code. Corresponds to the JSON property `countryCode` @return [String]
DART ID of this country. This is the ID used for targeting and generating reports. Corresponds to the JSON property `dartId` @return [Fixnum]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#country”. Corresponds to the JSON property `kind` @return [String]
Name of this country. Corresponds to the JSON property `name` @return [String]
Whether ad serving supports secure servers in this country. Corresponds to the JSON property `sslEnabled` @return [Boolean]
Whether ad serving supports secure servers in this country. Corresponds to the JSON property `sslEnabled` @return [Boolean]
Public Class Methods
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 2826 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 2831 def update!(**args) @country_code = args[:country_code] if args.key?(:country_code) @dart_id = args[:dart_id] if args.key?(:dart_id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @ssl_enabled = args[:ssl_enabled] if args.key?(:ssl_enabled) end