Class: Google::Apis::AndroidpublisherV3::AssetModuleMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::AssetModuleMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Metadata of an asset module.
Instance Attribute Summary collapse
-
#delivery_type ⇒ String
Indicates the delivery type for persistent install.
-
#name ⇒ String
Module name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AssetModuleMetadata
constructor
A new instance of AssetModuleMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AssetModuleMetadata
Returns a new instance of AssetModuleMetadata.
451 452 453 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 451 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delivery_type ⇒ String
Indicates the delivery type for persistent install.
Corresponds to the JSON property deliveryType
444 445 446 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 444 def delivery_type @delivery_type end |
#name ⇒ String
Module name.
Corresponds to the JSON property name
449 450 451 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 449 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
456 457 458 459 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 456 def update!(**args) @delivery_type = args[:delivery_type] if args.key?(:delivery_type) @name = args[:name] if args.key?(:name) end |