Class: Google::Apis::AndroidpublisherV3::ModuleMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::ModuleMetadata
- 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 a module.
Instance Attribute Summary collapse
-
#delivery_type ⇒ String
Indicates the delivery type (e.g. on-demand) of the module.
-
#dependencies ⇒ Array<String>
Names of the modules that this module directly depends on.
-
#module_type ⇒ String
Indicates the type of this feature module.
-
#name ⇒ String
Module name.
-
#targeting ⇒ Google::Apis::AndroidpublisherV3::ModuleTargeting
Targeting on the module level.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModuleMetadata
constructor
A new instance of ModuleMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModuleMetadata
Returns a new instance of ModuleMetadata.
3802 3803 3804 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delivery_type ⇒ String
Indicates the delivery type (e.g. on-demand) of the module.
Corresponds to the JSON property deliveryType
3779 3780 3781 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3779 def delivery_type @delivery_type end |
#dependencies ⇒ Array<String>
Names of the modules that this module directly depends on. Each module
implicitly depends on the base module.
Corresponds to the JSON property dependencies
3785 3786 3787 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3785 def dependencies @dependencies end |
#module_type ⇒ String
Indicates the type of this feature module.
Corresponds to the JSON property moduleType
3790 3791 3792 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3790 def module_type @module_type end |
#name ⇒ String
Module name.
Corresponds to the JSON property name
3795 3796 3797 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3795 def name @name end |
#targeting ⇒ Google::Apis::AndroidpublisherV3::ModuleTargeting
Targeting on the module level.
Corresponds to the JSON property targeting
3800 3801 3802 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3800 def targeting @targeting end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3807 3808 3809 3810 3811 3812 3813 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3807 def update!(**args) @delivery_type = args[:delivery_type] if args.key?(:delivery_type) @dependencies = args[:dependencies] if args.key?(:dependencies) @module_type = args[:module_type] if args.key?(:module_type) @name = args[:name] if args.key?(:name) @targeting = args[:targeting] if args.key?(:targeting) end |