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
1701 1702 1703 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1701 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
1694 1695 1696 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1694 def releases @releases end |
#track ⇒ String
Identifier for this track.
Corresponds to the JSON property track
1699 1700 1701 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1699 def track @track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1706 1707 1708 1709 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1706 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end |