Class: Google::Apis::DatamanagerV1::IngestedUserListInfo

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

Represents a user list that is populated by user provided data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IngestedUserListInfo

Returns a new instance of IngestedUserListInfo.



1340
1341
1342
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1340

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

Instance Attribute Details

#contact_id_infoGoogle::Apis::DatamanagerV1::ContactIdInfo

Additional information when CONTACT_ID is one of the upload_key_types. Corresponds to the JSON property contactIdInfo



1306
1307
1308
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1306

def contact_id_info
  @contact_id_info
end

#mobile_id_infoGoogle::Apis::DatamanagerV1::MobileIdInfo

Additional information when MOBILE_ID is one of the upload_key_types. Corresponds to the JSON property mobileIdInfo



1311
1312
1313
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1311

def mobile_id_info
  @mobile_id_info
end

#pair_id_infoGoogle::Apis::DatamanagerV1::PairIdInfo

Additional information when PAIR_ID is one of the upload_key_types. This feature is only available to data partners. Corresponds to the JSON property pairIdInfo



1317
1318
1319
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1317

def pair_id_info
  @pair_id_info
end

#partner_audience_infoGoogle::Apis::DatamanagerV1::PartnerAudienceInfo

Additional information for partner audiences. This feature is only available to data partners. Corresponds to the JSON property partnerAudienceInfo



1323
1324
1325
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1323

def partner_audience_info
  @partner_audience_info
end

#pseudonymous_id_infoGoogle::Apis::DatamanagerV1::PseudonymousIdInfo

Additional information when PSEUDONYMOUS_ID is one of the upload_key_types. Corresponds to the JSON property pseudonymousIdInfo



1328
1329
1330
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1328

def pseudonymous_id_info
  @pseudonymous_id_info
end

#upload_key_typesArray<String>

Required. Immutable. Upload key types of this user list. Corresponds to the JSON property uploadKeyTypes

Returns:

  • (Array<String>)


1333
1334
1335
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1333

def upload_key_types
  @upload_key_types
end

#user_id_infoGoogle::Apis::DatamanagerV1::UserIdInfo

Additional information when USER_ID is one of the upload_key_types. Corresponds to the JSON property userIdInfo



1338
1339
1340
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1338

def user_id_info
  @user_id_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1345
1346
1347
1348
1349
1350
1351
1352
1353
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1345

def update!(**args)
  @contact_id_info = args[:contact_id_info] if args.key?(:contact_id_info)
  @mobile_id_info = args[:mobile_id_info] if args.key?(:mobile_id_info)
  @pair_id_info = args[:pair_id_info] if args.key?(:pair_id_info)
  @partner_audience_info = args[:partner_audience_info] if args.key?(:partner_audience_info)
  @pseudonymous_id_info = args[:pseudonymous_id_info] if args.key?(:pseudonymous_id_info)
  @upload_key_types = args[:upload_key_types] if args.key?(:upload_key_types)
  @user_id_info = args[:user_id_info] if args.key?(:user_id_info)
end