Class: Google::Apis::CloudsearchV1::EnterpriseTopazSidekickPerson
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::EnterpriseTopazSidekickPerson
- 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
Person.
Instance Attribute Summary collapse
-
#affinity_level ⇒ String
The level of affinity this person has with the requesting user.
-
#attending_status ⇒ String
Attendance status of the person when included in a meeting event.
-
#email ⇒ String
Email.
-
#gaia_id ⇒ Fixnum
Gaia id.
-
#is_group ⇒ Boolean
(also: #is_group?)
Whether the invitee is a group.
-
#name ⇒ String
Name.
-
#obfuscated_gaia_id ⇒ String
Obfuscated Gaia id.
-
#photo_url ⇒ String
Absolute URL to the profile photo of the person.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseTopazSidekickPerson
constructor
A new instance of EnterpriseTopazSidekickPerson.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseTopazSidekickPerson
Returns a new instance of EnterpriseTopazSidekickPerson.
2795 2796 2797 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2795 def initialize(**args) update!(**args) end |
Instance Attribute Details
#affinity_level ⇒ String
The level of affinity this person has with the requesting user.
Corresponds to the JSON property affinityLevel
2757 2758 2759 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2757 def affinity_level @affinity_level end |
#attending_status ⇒ String
Attendance status of the person when included in a meeting event.
Corresponds to the JSON property attendingStatus
2762 2763 2764 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2762 def attending_status @attending_status end |
#email ⇒ String
Email.
Corresponds to the JSON property email
2767 2768 2769 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2767 def email @email end |
#gaia_id ⇒ Fixnum
Gaia id.
Corresponds to the JSON property gaiaId
2772 2773 2774 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2772 def gaia_id @gaia_id end |
#is_group ⇒ Boolean Also known as: is_group?
Whether the invitee is a group.
Corresponds to the JSON property isGroup
2777 2778 2779 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2777 def is_group @is_group end |
#name ⇒ String
Name.
Corresponds to the JSON property name
2783 2784 2785 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2783 def name @name end |
#obfuscated_gaia_id ⇒ String
Obfuscated Gaia id.
Corresponds to the JSON property obfuscatedGaiaId
2788 2789 2790 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2788 def @obfuscated_gaia_id end |
#photo_url ⇒ String
Absolute URL to the profile photo of the person.
Corresponds to the JSON property photoUrl
2793 2794 2795 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2793 def photo_url @photo_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2800 def update!(**args) @affinity_level = args[:affinity_level] if args.key?(:affinity_level) @attending_status = args[:attending_status] if args.key?(:attending_status) @email = args[:email] if args.key?(:email) @gaia_id = args[:gaia_id] if args.key?(:gaia_id) @is_group = args[:is_group] if args.key?(:is_group) @name = args[:name] if args.key?(:name) @obfuscated_gaia_id = args[:obfuscated_gaia_id] if args.key?(:obfuscated_gaia_id) @photo_url = args[:photo_url] if args.key?(:photo_url) end |