Class: Google::Apis::AndroidmanagementV1::AppTrackInfo
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::AppTrackInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb
Overview
Id to name association of a app track.
Instance Attribute Summary collapse
-
#track_alias ⇒ String
The track name associated with the trackId, set in the Play Console.
-
#track_id ⇒ String
The unmodifiable unique track identifier, taken from the releaseTrackId in the URL of the Play Console page that displays the app’s track information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppTrackInfo
constructor
A new instance of AppTrackInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppTrackInfo
Returns a new instance of AppTrackInfo.
125 126 127 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 125 def initialize(**args) update!(**args) end |
Instance Attribute Details
#track_alias ⇒ String
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
117 118 119 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 117 def track_alias @track_alias end |
#track_id ⇒ String
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
123 124 125 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 123 def track_id @track_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
130 131 132 133 |
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 130 def update!(**args) @track_alias = args[:track_alias] if args.key?(:track_alias) @track_id = args[:track_id] if args.key?(:track_id) end |