Class: Google::Apis::ChatV1::MembershipCount
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::MembershipCount
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Overview
Represents the count of memberships of a space, grouped into categories.
Instance Attribute Summary collapse
-
#joined_direct_human_user_count ⇒ Fixnum
Count of human users that have directly joined the space, not counting users joined by having membership in a joined group.
-
#joined_group_count ⇒ Fixnum
Count of all groups that have directly joined the space.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MembershipCount
constructor
A new instance of MembershipCount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MembershipCount
Returns a new instance of MembershipCount.
3791 3792 3793 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#joined_direct_human_user_count ⇒ Fixnum
Count of human users that have directly joined the space, not counting users
joined by having membership in a joined group.
Corresponds to the JSON property joinedDirectHumanUserCount
3784 3785 3786 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3784 def joined_direct_human_user_count @joined_direct_human_user_count end |
#joined_group_count ⇒ Fixnum
Count of all groups that have directly joined the space.
Corresponds to the JSON property joinedGroupCount
3789 3790 3791 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3789 def joined_group_count @joined_group_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3796 3797 3798 3799 |
# File 'lib/google/apis/chat_v1/classes.rb', line 3796 def update!(**args) @joined_direct_human_user_count = args[:joined_direct_human_user_count] if args.key?(:joined_direct_human_user_count) @joined_group_count = args[:joined_group_count] if args.key?(:joined_group_count) end |