Class: Google::Apis::AndroidpublisherV3::ReleaseSummary
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::ReleaseSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Summary of a release.
Instance Attribute Summary collapse
-
#active_artifacts ⇒ Array<Google::Apis::AndroidpublisherV3::ArtifactSummary>
List of active artifacts on this release Corresponds to the JSON property
activeArtifacts. -
#release_lifecycle_state ⇒ String
The lifecycle state of a release.
-
#release_name ⇒ String
Name of the release.
-
#track ⇒ String
Identifier for the track.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReleaseSummary
constructor
A new instance of ReleaseSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReleaseSummary
Returns a new instance of ReleaseSummary.
9168 9169 9170 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9168 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active_artifacts ⇒ Array<Google::Apis::AndroidpublisherV3::ArtifactSummary>
List of active artifacts on this release
Corresponds to the JSON property activeArtifacts
9150 9151 9152 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9150 def active_artifacts @active_artifacts end |
#release_lifecycle_state ⇒ String
The lifecycle state of a release.
Corresponds to the JSON property releaseLifecycleState
9155 9156 9157 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9155 def release_lifecycle_state @release_lifecycle_state end |
#release_name ⇒ String
Name of the release.
Corresponds to the JSON property releaseName
9160 9161 9162 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9160 def release_name @release_name end |
#track ⇒ String
Identifier for the track. Learn more about track names..
Corresponds to the JSON property track
9166 9167 9168 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9166 def track @track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9173 9174 9175 9176 9177 9178 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 9173 def update!(**args) @active_artifacts = args[:active_artifacts] if args.key?(:active_artifacts) @release_lifecycle_state = args[:release_lifecycle_state] if args.key?(:release_lifecycle_state) @release_name = args[:release_name] if args.key?(:release_name) @track = args[:track] if args.key?(:track) end |