SteveRedka

Results 1 comments of SteveRedka

Currently I do it like this: ```ruby class EntityClient < ApiStruct::Client rest_api 'entities' def index response = get(path: 'entities/', headers: SimpleAuthenticationHeader.call) response.fmap { |i| i[:results] } end end ``` However,...