Class: Google::Apis::DatamanagerV1::MobileIdInfo
- Inherits:
-
Object
- Object
- Google::Apis::DatamanagerV1::MobileIdInfo
- 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
-
#app_id ⇒ String
Required.
-
#data_source_type ⇒ String
Optional.
-
#key_space ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileIdInfo
constructor
A new instance of MobileIdInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MobileIdInfo
Returns a new instance of MobileIdInfo.
1512 1513 1514 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1512 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
Required. Immutable. A string that uniquely identifies a mobile application
from which the data was collected.
Corresponds to the JSON property appId
1500 1501 1502 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1500 def app_id @app_id end |
#data_source_type ⇒ String
Optional. Immutable. Source of the upload data.
Corresponds to the JSON property dataSourceType
1505 1506 1507 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1505 def data_source_type @data_source_type end |
#key_space ⇒ String
Required. Immutable. The key space of mobile IDs.
Corresponds to the JSON property keySpace
1510 1511 1512 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1510 def key_space @key_space end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1517 1518 1519 1520 1521 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1517 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 |