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.



1980
1981
1982
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1980

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



1946
1947
1948
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1946

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



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

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



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

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



1963
1964
1965
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1963

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



1968
1969
1970
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1968

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


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

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



1978
1979
1980
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1978

def user_id_info
  @user_id_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1985
1986
1987
1988
1989
1990
1991
1992
1993
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1985

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