Class: Google::Apis::DatamanagerV1::MobileIdInfo

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

Additional information when MOBILE_ID is one of the upload_key_types.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MobileIdInfo

Returns a new instance of MobileIdInfo.



1731
1732
1733
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1731

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

Instance Attribute Details

#app_idString

Required. Immutable. A string that uniquely identifies a mobile application from which the data was collected. Corresponds to the JSON property appId

Returns:

  • (String)


1719
1720
1721
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1719

def app_id
  @app_id
end

#data_source_typeString

Optional. Immutable. Source of the upload data. Corresponds to the JSON property dataSourceType

Returns:

  • (String)


1724
1725
1726
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1724

def data_source_type
  @data_source_type
end

#key_spaceString

Required. Immutable. The key space of mobile IDs. Corresponds to the JSON property keySpace

Returns:

  • (String)


1729
1730
1731
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1729

def key_space
  @key_space
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1736
1737
1738
1739
1740
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1736

def update!(**args)
  @app_id = args[:app_id] if args.key?(:app_id)
  @data_source_type = args[:data_source_type] if args.key?(:data_source_type)
  @key_space = args[:key_space] if args.key?(:key_space)
end