Class: Google::Apis::FirebaseappdistributionV1::GoogleFirebaseAppdistroV1BatchJoinGroupRequest

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

The request message for BatchJoinGroup

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1BatchJoinGroupRequest

Returns a new instance of GoogleFirebaseAppdistroV1BatchJoinGroupRequest.



807
808
809
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 807

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

Instance Attribute Details

#create_missing_testersBoolean Also known as: create_missing_testers?

Indicates whether to create tester resources based on emails if they don't exist yet. Corresponds to the JSON property createMissingTesters

Returns:

  • (Boolean)


798
799
800
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 798

def create_missing_testers
  @create_missing_testers
end

#emailsArray<String>

Required. The emails of the testers to be added to the group. A maximum of 999 and a minimum of 1 tester can be created in a batch. Corresponds to the JSON property emails

Returns:

  • (Array<String>)


805
806
807
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 805

def emails
  @emails
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



812
813
814
815
# File 'lib/google/apis/firebaseappdistribution_v1/classes.rb', line 812

def update!(**args)
  @create_missing_testers = args[:create_missing_testers] if args.key?(:create_missing_testers)
  @emails = args[:emails] if args.key?(:emails)
end