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
| 1648 1649 1650 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1648 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
| 1640 1641 1642 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1640 def releases @releases end | 
#track ⇒ String
Identifier for this track. One of "alpha", "beta", "production", "rollout" or "
internal".
Corresponds to the JSON property track
| 1646 1647 1648 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1646 def track @track end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1653 1654 1655 1656 | # File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1653 def update!(**args) @releases = args[:releases] if args.key?(:releases) @track = args[:track] if args.key?(:track) end |