Class: Google::Apis::AndroidpublisherV3::AssetModuleMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_typeString

Indicates the delivery type for persistent install. Corresponds to the JSON property deliveryType

Returns:

  • (String)


685
686
687
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 685

def delivery_type
  @delivery_type
end

#nameString

Module name. Corresponds to the JSON property name

Returns:

  • (String)


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