Class: Google::Apis::AndroidpublisherV2::Track

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Track

Returns a new instance of Track.



1644
1645
1646
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1644

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#trackString

Identifier for this track. Corresponds to the JSON property track

Returns:

  • (String)


1630
1631
1632
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1630

def track
  @track
end

#user_fractionFloat

Corresponds to the JSON property userFraction

Returns:

  • (Float)


1635
1636
1637
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1635

def user_fraction
  @user_fraction
end

#version_codesArray<Fixnum>

Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases. Corresponds to the JSON property versionCodes

Returns:

  • (Array<Fixnum>)


1642
1643
1644
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1642

def version_codes
  @version_codes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1649
1650
1651
1652
1653
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1649

def update!(**args)
  @track = args[:track] if args.key?(:track)
  @user_fraction = args[:user_fraction] if args.key?(:user_fraction)
  @version_codes = args[:version_codes] if args.key?(:version_codes)
end