Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1SqlExpression
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1SqlExpression
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb
Overview
Query conditions used to filter results.
Instance Attribute Summary collapse
-
#email ⇒ String
A case insensitive string that the account's email should match.
-
#phone_number ⇒ String
A string that the account's phone number should match.
-
#user_id ⇒ String
A string that the account's local ID should match.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1SqlExpression
constructor
A new instance of GoogleCloudIdentitytoolkitV1SqlExpression.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1SqlExpression
Returns a new instance of GoogleCloudIdentitytoolkitV1SqlExpression.
3491 3492 3493 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3491 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
A case insensitive string that the account's email should match. Only one of
email, phone_number, or user_id should be specified in a SqlExpression.
If more than one is specified, only the first (in that order) will be applied.
Corresponds to the JSON property email
3475 3476 3477 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3475 def email @email end |
#phone_number ⇒ String
A string that the account's phone number should match. Only one of email,
phone_number, or user_id should be specified in a SqlExpression. If more
than one is specified, only the first (in that order) will be applied.
Corresponds to the JSON property phoneNumber
3482 3483 3484 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3482 def phone_number @phone_number end |
#user_id ⇒ String
A string that the account's local ID should match. Only one of email,
phone_number, or user_id should be specified in a SqlExpression If more
than one is specified, only the first (in that order) will be applied.
Corresponds to the JSON property userId
3489 3490 3491 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3489 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3496 3497 3498 3499 3500 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3496 def update!(**args) @email = args[:email] if args.key?(:email) @phone_number = args[:phone_number] if args.key?(:phone_number) @user_id = args[:user_id] if args.key?(:user_id) end |