Class: Google::Apis::CloudsearchV1::InviteeInfo

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

Overview

Invitee information from a Dynamite invitation. See go/dynamite-invitee-mgmt.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InviteeInfo

Returns a new instance of InviteeInfo.



10000
10001
10002
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10000

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

Instance Attribute Details

#emailString

Email as typed by the user when invited to Room or DM. This value will be canonicalized and hashed before retained in storage. Corresponds to the JSON property email

Returns:

  • (String)


9993
9994
9995
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9993

def email
  @email
end

#user_idGoogle::Apis::CloudsearchV1::UserId

Primary key for User resource. Corresponds to the JSON property userId



9998
9999
10000
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9998

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10005
10006
10007
10008
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10005

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