Class: Google::Apis::AndroidpublisherV3::Track
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Track
- 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
A track configuration. The resource for TracksService.
Instance Attribute Summary collapse
-
#releases ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease>
In a read request, represents all active releases in the track.
-
#track ⇒ String
Identifier of the track.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Track
constructor
A new instance of Track.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Track
Returns a new instance of Track.
6632 6633 6634 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6632 def initialize(**args) update!(**args) end |
Instance Attribute Details
#releases ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease>
In a read request, represents all active releases in the track. In an update
request, represents desired changes.
Corresponds to the JSON property releases
6622 6623 6624 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6622 def releases @releases end |
#track ⇒ String
Identifier of the track. Form factor tracks have a special prefix as an
identifier, for example wear:production, automotive:production. More on
track name
Corresponds to the JSON property track
6630 6631 6632 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6630 def track @track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6637 6638 6639 6640 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6637 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end |