Class: Google::Apis::AndroidpublisherV3::Track
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Track
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
-
#releases ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease>
A list of all active releases in this track during a read request.
-
#track ⇒ String
Identifier for this track.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Track
constructor
A new instance of Track.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Track
Returns a new instance of Track
1710 1711 1712 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1710 def initialize(**args) update!(**args) end |
Instance Attribute Details
#releases ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease>
A list of all active releases in this track during a read request. On an
update request, it represents desired changes.
Corresponds to the JSON property releases
1703 1704 1705 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1703 def releases @releases end |
#track ⇒ String
Identifier for this track.
Corresponds to the JSON property track
1708 1709 1710 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1708 def track @track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1715 1716 1717 1718 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1715 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end |