Class: Google::Apis::DatamanagerV1::ContactIdInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContactIdInfo

Returns a new instance of ContactIdInfo.



338
339
340
# File 'lib/google/apis/datamanager_v1/classes.rb', line 338

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_source_typeString

Optional. Immutable. Source of the upload data Corresponds to the JSON property dataSourceType

Returns:

  • (String)


331
332
333
# File 'lib/google/apis/datamanager_v1/classes.rb', line 331

def data_source_type
  @data_source_type
end

#match_rate_percentageFixnum

Output only. Match rate for customer match user lists. Corresponds to the JSON property matchRatePercentage

Returns:

  • (Fixnum)


336
337
338
# File 'lib/google/apis/datamanager_v1/classes.rb', line 336

def match_rate_percentage
  @match_rate_percentage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



343
344
345
346
# File 'lib/google/apis/datamanager_v1/classes.rb', line 343

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