Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 877 Bytes

SeriesListRep.md

File metadata and controls

22 lines (16 loc) · 877 Bytes

LaunchDarklyApi::SeriesListRep

Properties

Name Type Description Notes
_links Hash<String, Object> The location and content type of related resources
metadata Array<Hash> Metadata about each series
series Array<Hash> An array of data points with timestamps. Each element of the array is an object with a 'time' field, whose value is the timestamp, and one or more key fields. If there are multiple key fields, they are labeled '0', '1', and so on, and are explained in the <code>metadata</code>.

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::SeriesListRep.new(
  _links: null,
  metadata: null,
  series: [{&quot;0&quot;:11,&quot;1&quot;:15,&quot;time&quot;:1677888000000}]
)