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.



1194
1195
1196
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1194

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



1160
1161
1162
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1160

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



1165
1166
1167
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1165

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



1171
1172
1173
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1171

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



1177
1178
1179
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1177

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



1182
1183
1184
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1182

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>)


1187
1188
1189
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1187

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



1192
1193
1194
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1192

def user_id_info
  @user_id_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1199
1200
1201
1202
1203
1204
1205
1206
1207
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1199

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