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.



322
323
324
# File 'lib/google/apis/datamanager_v1/classes.rb', line 322

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)


315
316
317
# File 'lib/google/apis/datamanager_v1/classes.rb', line 315

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)


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