class Google::Apis::AndroidmanagementV1::AppTrackInfo
Id to name association of a app track.
Attributes
track_alias[RW]
The track name associated with the trackId, set in the Play Console. The name is modifiable from Play Console. Corresponds to the JSON property `trackAlias` @return [String]
track_id[RW]
The unmodifiable unique track identifier, taken from the releaseTrackId in the URL of the Play Console page that displays the app’s track information. Corresponds to the JSON property `trackId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 150 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 155 def update!(**args) @track_alias = args[:track_alias] if args.key?(:track_alias) @track_id = args[:track_id] if args.key?(:track_id) end