Sha256: c5c9f0396efb2f9abf90d7a954b860a0238079972a9118df607f215a6eb83cea
Contents?: true
Size: 444 Bytes
Versions: 35
Compression:
Stored size: 444 Bytes
Contents
module RockRMS module Response class GroupMember < Base MAP = { person: 'Person', group_id: 'GroupId', }.freeze def format_single(data) response = to_h(MAP, data) response[:person] = format_person(response[:person]) response end def format_person(res) return res if res.nil? Person.format(res) end end end end
Version data entries
35 entries across 35 versions & 1 rubygems