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.
692 693 694 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 692 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
685 686 687 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 685 def delivery_type @delivery_type end |
#name ⇒ String
Module name.
Corresponds to the JSON property name
690 691 692 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 690 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
697 698 699 700 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 697 def update!(**args) @delivery_type = args[:delivery_type] if args.key?(:delivery_type) @name = args[:name] if args.key?(:name) end |