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.



1802
1803
1804
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1802

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



1768
1769
1770
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1768

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



1773
1774
1775
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1773

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



1779
1780
1781
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1779

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



1785
1786
1787
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1785

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



1790
1791
1792
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1790

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


1795
1796
1797
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1795

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



1800
1801
1802
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1800

def user_id_info
  @user_id_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1807
1808
1809
1810
1811
1812
1813
1814
1815
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1807

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