Class: Google::Apis::CloudsearchV1::InviteeInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::InviteeInfo
- 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
-
#email ⇒ String
Email as typed by the user when invited to Room or DM.
-
#user_id ⇒ Google::Apis::CloudsearchV1::UserId
Primary key for User resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InviteeInfo
constructor
A new instance of InviteeInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InviteeInfo
Returns a new instance of InviteeInfo.
11686 11687 11688 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11686 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
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
11679 11680 11681 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11679 def email @email end |
#user_id ⇒ Google::Apis::CloudsearchV1::UserId
Primary key for User resource.
Corresponds to the JSON property userId
11684 11685 11686 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11684 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11691 11692 11693 11694 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11691 def update!(**args) @email = args[:email] if args.key?(:email) @user_id = args[:user_id] if args.key?(:user_id) end |