class Google::Apis::AndroidpublisherV3::Track
A track configuration. The resource for TracksService.
Attributes
releases[RW]
In a read request, represents all active releases in the track. In an update request, represents desired changes. Corresponds to the JSON property `releases` @return [Array<Google::Apis::AndroidpublisherV3::TrackRelease>]
track[RW]
Identifier of the track. Corresponds to the JSON property `track` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1920 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1925 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end