Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 912 Bytes

PullRequestCollectionRep.md

File metadata and controls

22 lines (16 loc) · 912 Bytes

LaunchDarklyApi::PullRequestCollectionRep

Properties

Name Type Description Notes
total_count Integer The total number of pull requests
items Array<PullRequestRep> A list of pull requests
_links Hash<String, Link> The location and content type of related resources [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PullRequestCollectionRep.new(
  total_count: 25,
  items: null,
  _links: {&quot;next&quot;:{&quot;href&quot;:&quot;/api/v2/engineering-insights/pull-requests?after&#x3D;a4290006-1fd1-4ca5-acf7-9f31fac61cf5&quot;,&quot;type&quot;:&quot;application/json&quot;},&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/engineering-insights/pull-requests&quot;,&quot;type&quot;:&quot;application/json&quot;}}
)