Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential

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

Login credential for automated tests

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaLoginCredential

Returns a new instance of GoogleFirebaseAppdistroV1alphaLoginCredential.



573
574
575
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 573

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

Instance Attribute Details

#field_hintsGoogle::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredentialFieldHints

Hints to the crawler for identifying input fields Corresponds to the JSON property fieldHints



555
556
557
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 555

def field_hints
  @field_hints
end

#googleBoolean Also known as: google?

Optional. Are these credentials for Google? Corresponds to the JSON property google

Returns:

  • (Boolean)


560
561
562
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 560

def google
  @google
end

#passwordString

Optional. Password for automated tests Corresponds to the JSON property password

Returns:

  • (String)


566
567
568
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 566

def password
  @password
end

#usernameString

Optional. Username for automated tests Corresponds to the JSON property username

Returns:

  • (String)


571
572
573
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 571

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



578
579
580
581
582
583
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 578

def update!(**args)
  @field_hints = args[:field_hints] if args.key?(:field_hints)
  @google = args[:google] if args.key?(:google)
  @password = args[:password] if args.key?(:password)
  @username = args[:username] if args.key?(:username)
end