Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1Group

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappdistribution_v1/classes.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb,
lib/google/apis/firebaseappdistribution_v1/representations.rb

Overview

A group which can contain testers. A group can be invited to test apps in a Firebase project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1Group

Returns a new instance of GoogleFirebaseAppdistroV1Group.



1001
1002
1003
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1001

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

Instance Attribute Details

#display_nameString

Required. The display name of the group. Corresponds to the JSON property displayName

Returns:

  • (String)


978
979
980
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 978

def display_name
  @display_name
end

Output only. The number of invite links for this group. Corresponds to the JSON property inviteLinkCount

Returns:

  • (Fixnum)


983
984
985
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 983

def invite_link_count
  @invite_link_count
end

#nameString

The name of the group resource. Format: projects/project_number/groups/ group_alias` Corresponds to the JSON propertyname`

Returns:

  • (String)


989
990
991
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 989

def name
  @name
end

#release_countFixnum

Output only. The number of releases this group is permitted to access. Corresponds to the JSON property releaseCount

Returns:

  • (Fixnum)


994
995
996
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 994

def release_count
  @release_count
end

#tester_countFixnum

Output only. The number of testers who are members of this group. Corresponds to the JSON property testerCount

Returns:

  • (Fixnum)


999
1000
1001
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 999

def tester_count
  @tester_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1006
1007
1008
1009
1010
1011
1012
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 1006

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @invite_link_count = args[:invite_link_count] if args.key?(:invite_link_count)
  @name = args[:name] if args.key?(:name)
  @release_count = args[:release_count] if args.key?(:release_count)
  @tester_count = args[:tester_count] if args.key?(:tester_count)
end