Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRelease
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRelease
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb
Overview
Proto defining a release object
Instance Attribute Summary collapse
-
#build_version ⇒ String
Release build version Corresponds to the JSON property
buildVersion. -
#display_version ⇒ String
Release version Corresponds to the JSON property
displayVersion. -
#distributed_at ⇒ String
Timestamp when the release was created Corresponds to the JSON property
distributedAt. -
#id ⇒ String
Release Id Corresponds to the JSON property
id. -
#instance_id ⇒ String
Instance id of the release Corresponds to the JSON property
instanceId. -
#last_activity_at ⇒ String
Last activity timestamp Corresponds to the JSON property
lastActivityAt. -
#open_invitation_count ⇒ Fixnum
Number of testers who have open invitations for the release Corresponds to the JSON property
openInvitationCount. -
#received_at ⇒ String
unused.
-
#release_notes_summary ⇒ String
Release notes summary Corresponds to the JSON property
releaseNotesSummary. -
#tester_count ⇒ Fixnum
Count of testers added to the release Corresponds to the JSON property
testerCount. -
#tester_with_install_count ⇒ Fixnum
Number of testers who have installed the release Corresponds to the JSON property
testerWithInstallCount.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaRelease
constructor
A new instance of GoogleFirebaseAppdistroV1alphaRelease.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaRelease
Returns a new instance of GoogleFirebaseAppdistroV1alphaRelease.
1065 1066 1067 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1065 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_version ⇒ String
Release build version
Corresponds to the JSON property buildVersion
1013 1014 1015 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1013 def build_version @build_version end |
#display_version ⇒ String
Release version
Corresponds to the JSON property displayVersion
1018 1019 1020 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1018 def display_version @display_version end |
#distributed_at ⇒ String
Timestamp when the release was created
Corresponds to the JSON property distributedAt
1023 1024 1025 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1023 def distributed_at @distributed_at end |
#id ⇒ String
Release Id
Corresponds to the JSON property id
1028 1029 1030 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1028 def id @id end |
#instance_id ⇒ String
Instance id of the release
Corresponds to the JSON property instanceId
1033 1034 1035 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1033 def instance_id @instance_id end |
#last_activity_at ⇒ String
Last activity timestamp
Corresponds to the JSON property lastActivityAt
1038 1039 1040 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1038 def last_activity_at @last_activity_at end |
#open_invitation_count ⇒ Fixnum
Number of testers who have open invitations for the release
Corresponds to the JSON property openInvitationCount
1043 1044 1045 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1043 def open_invitation_count @open_invitation_count end |
#received_at ⇒ String
unused.
Corresponds to the JSON property receivedAt
1048 1049 1050 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1048 def received_at @received_at end |
#release_notes_summary ⇒ String
Release notes summary
Corresponds to the JSON property releaseNotesSummary
1053 1054 1055 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1053 def release_notes_summary @release_notes_summary end |
#tester_count ⇒ Fixnum
Count of testers added to the release
Corresponds to the JSON property testerCount
1058 1059 1060 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1058 def tester_count @tester_count end |
#tester_with_install_count ⇒ Fixnum
Number of testers who have installed the release
Corresponds to the JSON property testerWithInstallCount
1063 1064 1065 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1063 def tester_with_install_count @tester_with_install_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 1070 def update!(**args) @build_version = args[:build_version] if args.key?(:build_version) @display_version = args[:display_version] if args.key?(:display_version) @distributed_at = args[:distributed_at] if args.key?(:distributed_at) @id = args[:id] if args.key?(:id) @instance_id = args[:instance_id] if args.key?(:instance_id) @last_activity_at = args[:last_activity_at] if args.key?(:last_activity_at) @open_invitation_count = args[:open_invitation_count] if args.key?(:open_invitation_count) @received_at = args[:received_at] if args.key?(:received_at) @release_notes_summary = args[:release_notes_summary] if args.key?(:release_notes_summary) @tester_count = args[:tester_count] if args.key?(:tester_count) @tester_with_install_count = args[:tester_with_install_count] if args.key?(:tester_with_install_count) end |