module Roqua module CoreApi module Models class Person def initialize(attributes) @attributes = attributes end def id @attributes.fetch("id") end end end end end