Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRelease

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaRelease

Returns a new instance of GoogleFirebaseAppdistroV1alphaRelease.



770
771
772
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 770

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

Instance Attribute Details

#build_versionString

Release build version Corresponds to the JSON property buildVersion

Returns:

  • (String)


718
719
720
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 718

def build_version
  @build_version
end

#display_versionString

Release version Corresponds to the JSON property displayVersion

Returns:

  • (String)


723
724
725
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 723

def display_version
  @display_version
end

#distributed_atString

Timestamp when the release was created Corresponds to the JSON property distributedAt

Returns:

  • (String)


728
729
730
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 728

def distributed_at
  @distributed_at
end

#idString

Release Id Corresponds to the JSON property id

Returns:

  • (String)


733
734
735
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 733

def id
  @id
end

#instance_idString

Instance id of the release Corresponds to the JSON property instanceId

Returns:

  • (String)


738
739
740
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 738

def instance_id
  @instance_id
end

#last_activity_atString

Last activity timestamp Corresponds to the JSON property lastActivityAt

Returns:

  • (String)


743
744
745
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 743

def last_activity_at
  @last_activity_at
end

#open_invitation_countFixnum

Number of testers who have open invitations for the release Corresponds to the JSON property openInvitationCount

Returns:

  • (Fixnum)


748
749
750
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 748

def open_invitation_count
  @open_invitation_count
end

#received_atString

unused. Corresponds to the JSON property receivedAt

Returns:

  • (String)


753
754
755
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 753

def received_at
  @received_at
end

#release_notes_summaryString

Release notes summary Corresponds to the JSON property releaseNotesSummary

Returns:

  • (String)


758
759
760
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 758

def release_notes_summary
  @release_notes_summary
end

#tester_countFixnum

Count of testers added to the release Corresponds to the JSON property testerCount

Returns:

  • (Fixnum)


763
764
765
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 763

def tester_count
  @tester_count
end

#tester_with_install_countFixnum

Number of testers who have installed the release Corresponds to the JSON property testerWithInstallCount

Returns:

  • (Fixnum)


768
769
770
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 768

def tester_with_install_count
  @tester_with_install_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



775
776
777
778
779
780
781
782
783
784
785
786
787
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 775

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