class Hawkular::Alerts::Trigger::GroupMemberInfo
Representing of one GroupMemberInfo
Attributes
data_id_map[RW]
group_id[RW]
member_context[RW]
member_description[RW]
member_id[RW]
member_name[RW]
Public Instance Methods
to_h()
click to toggle source
# File lib/hawkular/alerts/alerts_api.rb 515 def to_h 516 cond_hash = {} 517 cond_hash['groupId'] = @group_id 518 cond_hash['memberId'] = @member_id 519 cond_hash['memberName'] = @member_name 520 cond_hash['memberDescription'] = @member_description 521 cond_hash['memberContext'] = @member_context 522 cond_hash['memberTags'] = @member_tags 523 cond_hash['dataIdMap'] = @data_id_map 524 cond_hash 525 end