Class: Google::Apis::AndroidpublisherV3::ReleaseSummary

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReleaseSummary

Returns a new instance of ReleaseSummary.



8989
8990
8991
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8989

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

Instance Attribute Details

#active_artifactsArray<Google::Apis::AndroidpublisherV3::ArtifactSummary>

List of active artifacts on this release Corresponds to the JSON property activeArtifacts



8971
8972
8973
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8971

def active_artifacts
  @active_artifacts
end

#release_lifecycle_stateString

The lifecycle state of a release. Corresponds to the JSON property releaseLifecycleState

Returns:

  • (String)


8976
8977
8978
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8976

def release_lifecycle_state
  @release_lifecycle_state
end

#release_nameString

Name of the release. Corresponds to the JSON property releaseName

Returns:

  • (String)


8981
8982
8983
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8981

def release_name
  @release_name
end

#trackString

Identifier for the track. Learn more about track names.. Corresponds to the JSON property track

Returns:

  • (String)


8987
8988
8989
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8987

def track
  @track
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8994
8995
8996
8997
8998
8999
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8994

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