Class: Google::Apis::CloudsearchV1::Roster
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Roster
- 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
Roster profile information.
Instance Attribute Summary collapse
-
#avatar_url ⇒ String
Corresponds to the JSON property
avatarUrl
. -
#id ⇒ Google::Apis::CloudsearchV1::RosterId
Primary key for Roster resource.
-
#is_membership_visible_to_caller ⇒ Boolean
(also: #is_membership_visible_to_caller?)
Whether caller has visibility into members of the roster.
-
#membership_count ⇒ Fixnum
Corresponds to the JSON property
membershipCount
. -
#name ⇒ String
Corresponds to the JSON property
name
. -
#roster_gaia_key ⇒ String
Roster gaia key, usually an email address.
-
#roster_state ⇒ String
Roster deletion state - considered active unless set to deleted Corresponds to the JSON property
rosterState
. -
#segmented_membership_counts ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCounts
Roster membership count.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Roster
constructor
A new instance of Roster.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Roster
Returns a new instance of Roster.
17660 17661 17662 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17660 def initialize(**args) update!(**args) end |
Instance Attribute Details
#avatar_url ⇒ String
Corresponds to the JSON property avatarUrl
17621 17622 17623 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17621 def avatar_url @avatar_url end |
#id ⇒ Google::Apis::CloudsearchV1::RosterId
Primary key for Roster resource.
Corresponds to the JSON property id
17626 17627 17628 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17626 def id @id end |
#is_membership_visible_to_caller ⇒ Boolean Also known as: is_membership_visible_to_caller?
Whether caller has visibility into members of the roster.
Corresponds to the JSON property isMembershipVisibleToCaller
17631 17632 17633 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17631 def is_membership_visible_to_caller @is_membership_visible_to_caller end |
#membership_count ⇒ Fixnum
Corresponds to the JSON property membershipCount
17637 17638 17639 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17637 def membership_count @membership_count end |
#name ⇒ String
Corresponds to the JSON property name
17642 17643 17644 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17642 def name @name end |
#roster_gaia_key ⇒ String
Roster gaia key, usually an email address. Set in looking up rosters response.
Corresponds to the JSON property rosterGaiaKey
17647 17648 17649 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17647 def roster_gaia_key @roster_gaia_key end |
#roster_state ⇒ String
Roster deletion state - considered active unless set to deleted
Corresponds to the JSON property rosterState
17652 17653 17654 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17652 def roster_state @roster_state end |
#segmented_membership_counts ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCounts
Roster membership count. May contain counts based on member type and
membership state.
Corresponds to the JSON property segmentedMembershipCounts
17658 17659 17660 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17658 def segmented_membership_counts @segmented_membership_counts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17665 def update!(**args) @avatar_url = args[:avatar_url] if args.key?(:avatar_url) @id = args[:id] if args.key?(:id) @is_membership_visible_to_caller = args[:is_membership_visible_to_caller] if args.key?(:is_membership_visible_to_caller) @membership_count = args[:membership_count] if args.key?(:membership_count) @name = args[:name] if args.key?(:name) @roster_gaia_key = args[:roster_gaia_key] if args.key?(:roster_gaia_key) @roster_state = args[:roster_state] if args.key?(:roster_state) @segmented_membership_counts = args[:segmented_membership_counts] if args.key?(:segmented_membership_counts) end |