Sha256: 54a318adc8b08c0c4c5226f47a760df0d7e7b23ac504e5031ec6303115b08b71
Contents?: true
Size: 793 Bytes
Versions: 3
Compression:
Stored size: 793 Bytes
Contents
module AngellistApi class Client # Defines methods related to URLs # # @see http://angel.co/api/spec/press module Press # Return press for the given startup. Press is paginated and ordered by # most recent first, according to the post date. # # @requires_authentication No # @paginated Yes # # @param options [Hash] A customizable set of options. # @option options [Integer] :startup_id Specifies the desired startup # @option options [Integer] :page Specifies the page of results to # retrieve. # @option options [Integer] :per_page (50) The number of results to return # for a page. Maximum of 50. def get_press(options={}) get("1/press", options) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
angellist_api-1.0.5 | lib/angellist_api/client/press.rb |
angellist_api-1.0.4 | lib/angellist_api/client/press.rb |
angellist_api-1.0.3 | lib/angellist_api/client/press.rb |