Class: Google::Apis::AndroidenterpriseV1::TrackInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb

Overview

Id to name association of a track.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TrackInfo

Returns a new instance of TrackInfo



2788
2789
2790
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2788

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#track_aliasString

A modifiable name for a track. This is the visible name in the play developer console. Corresponds to the JSON property trackAlias

Returns:

  • (String)


2779
2780
2781
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2779

def track_alias
  @track_alias
end

#track_idString

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

Returns:

  • (String)


2786
2787
2788
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2786

def track_id
  @track_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2793
2794
2795
2796
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2793

def update!(**args)
  @track_alias = args[:track_alias] if args.key?(:track_alias)
  @track_id = args[:track_id] if args.key?(:track_id)
end