Sha256: a9af1002ca4bf8d28aa8105a6bda122fbb8669e46012c7d77919aebb22a8c4e5
Contents?: true
Size: 349 Bytes
Versions: 8
Compression:
Stored size: 349 Bytes
Contents
module FellowshipOne class PersonReader < ApiReader # Constructor. # # @param person_id (optional) The ID of the person to load. def initialize(person_id = nil) if person_id.nil? @url_new_data_path = '/v1/People/New' else @url_data_path = "/v1/People/#{person_id}" end end end end
Version data entries
8 entries across 8 versions & 1 rubygems