Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 900 Bytes

DeploymentCollectionRep.md

File metadata and controls

22 lines (16 loc) · 900 Bytes

LaunchDarklyApi::DeploymentCollectionRep

Properties

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

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::DeploymentCollectionRep.new(
  total_count: 25,
  items: null,
  _links: {&quot;next&quot;:{&quot;href&quot;:&quot;/api/v2/engineering-insights/deployments?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/deployments&quot;,&quot;type&quot;:&quot;application/json&quot;}}
)