Class: Google::Apis::DatamanagerV1::ContactIdInfo
- Inherits:
-
Object
- Object
- Google::Apis::DatamanagerV1::ContactIdInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamanager_v1/classes.rb,
lib/google/apis/datamanager_v1/representations.rb,
lib/google/apis/datamanager_v1/representations.rb
Overview
Additional information when CONTACT_ID is one of the upload_key_types.
Instance Attribute Summary collapse
-
#data_source_type ⇒ String
Optional.
-
#match_rate_percentage ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContactIdInfo
constructor
A new instance of ContactIdInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContactIdInfo
Returns a new instance of ContactIdInfo.
322 323 324 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_source_type ⇒ String
Optional. Immutable. Source of the upload data
Corresponds to the JSON property dataSourceType
315 316 317 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 315 def data_source_type @data_source_type end |
#match_rate_percentage ⇒ Fixnum
Output only. Match rate for customer match user lists.
Corresponds to the JSON property matchRatePercentage
320 321 322 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 320 def match_rate_percentage @match_rate_percentage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
327 328 329 330 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 327 def update!(**args) @data_source_type = args[:data_source_type] if args.key?(:data_source_type) @match_rate_percentage = args[:match_rate_percentage] if args.key?(:match_rate_percentage) end |