Class: Google::Apis::CloudsearchV1::MembershipChangedMetadata

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

Annotation metadata to display system messages for membership changes. Next Tag: 8

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MembershipChangedMetadata

Returns a new instance of MembershipChangedMetadata.



11785
11786
11787
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11785

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

Instance Attribute Details

#affected_member_profilesArray<Google::Apis::CloudsearchV1::Member>

Corresponds to the JSON property affectedMemberProfiles



11753
11754
11755
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11753

def affected_member_profiles
  @affected_member_profiles
end

#affected_membersArray<Google::Apis::CloudsearchV1::MemberId>

List of users and rosters whose membership status changed. Corresponds to the JSON property affectedMembers



11758
11759
11760
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11758

def affected_members
  @affected_members
end

#affected_membershipsArray<Google::Apis::CloudsearchV1::AffectedMembership>

Corresponds to the JSON property affectedMemberships



11763
11764
11765
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11763

def affected_memberships
  @affected_memberships
end

#initiatorGoogle::Apis::CloudsearchV1::UserId

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



11768
11769
11770
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11768

def initiator
  @initiator
end

#initiator_profileGoogle::Apis::CloudsearchV1::User

User profile information. This user is not necessarily member of a space. Corresponds to the JSON property initiatorProfile



11773
11774
11775
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11773

def initiator_profile
  @initiator_profile
end

#initiator_typeString

The type of the user who initiated this membership change. Corresponds to the JSON property initiatorType

Returns:

  • (String)


11778
11779
11780
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11778

def initiator_type
  @initiator_type
end

#typeString

Corresponds to the JSON property type

Returns:

  • (String)


11783
11784
11785
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11783

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11790
11791
11792
11793
11794
11795
11796
11797
11798
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11790

def update!(**args)
  @affected_member_profiles = args[:affected_member_profiles] if args.key?(:affected_member_profiles)
  @affected_members = args[:affected_members] if args.key?(:affected_members)
  @affected_memberships = args[:affected_memberships] if args.key?(:affected_memberships)
  @initiator = args[:initiator] if args.key?(:initiator)
  @initiator_profile = args[:initiator_profile] if args.key?(:initiator_profile)
  @initiator_type = args[:initiator_type] if args.key?(:initiator_type)
  @type = args[:type] if args.key?(:type)
end