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.



1973
1974
1975
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1973

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



1939
1940
1941
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1939

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



1944
1945
1946
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1944

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



1950
1951
1952
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1950

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



1956
1957
1958
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1956

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



1961
1962
1963
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1961

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


1966
1967
1968
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1966

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



1971
1972
1973
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1971

def user_id_info
  @user_id_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1978
1979
1980
1981
1982
1983
1984
1985
1986
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1978

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