Class: Google::Apis::AndroidpublisherV3::Track
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::Track
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #releases  ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of all active releases in this track during a read request.
 - 
  
    
      #track  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifier for this track.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Track 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Track.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Track
Returns a new instance of Track
      1702 1703 1704  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1702 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#releases ⇒ Array<Google::Apis::AndroidpublisherV3::TrackRelease>
A list of all active releases in this track during a read request. On an
update request, it represents desired changes.
Corresponds to the JSON property releases
      1695 1696 1697  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1695 def releases @releases end  | 
  
#track ⇒ String
Identifier for this track.
Corresponds to the JSON property track
      1700 1701 1702  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1700 def track @track end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1707 1708 1709 1710  | 
    
      # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1707 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end  |