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.



654
655
656
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 654

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



636
637
638
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 636

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)


641
642
643
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 641

def google
  @google
end

#passwordString

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

Returns:

  • (String)


647
648
649
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 647

def password
  @password
end

#usernameString

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

Returns:

  • (String)


652
653
654
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 652

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



659
660
661
662
663
664
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 659

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