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
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.
1917 1918 1919 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1917 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
1910 1911 1912 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1910 def releases @releases end |
#track ⇒ String
Identifier of the track.
Corresponds to the JSON property track
1915 1916 1917 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1915 def track @track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1922 1923 1924 1925 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1922 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end |