class Google::Apis::AndroidenterpriseV1::TrackInfo
Id to name association of a track.
Attributes
track_alias[RW]
A modifiable name for a track. This is the visible name in the play developer console. Corresponds to the JSON property `trackAlias` @return [String]
track_id[RW]
Unmodifiable, unique track identifier. This identifier is the releaseTrackId in the url of the play developer console page that displays the track information. Corresponds to the JSON property `trackId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2721 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2726 def update!(**args) @track_alias = args[:track_alias] if args.key?(:track_alias) @track_id = args[:track_id] if args.key?(:track_id) end