Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.08 KB

File metadata and controls

24 lines (17 loc) · 1.08 KB

SeriesListRepFloat

Properties

Name Type Description Notes
_links { [key: string]: any; } The location and content type of related resources [default to undefined]
metadata Array<{ [key: string]: any; }> Metadata about each series [default to undefined]
series Array<{ [key: string]: number; }> An array of data points with timestamps. Each element of the array is an object with a &#39;time&#39; field, whose value is the timestamp, and one or more key fields. If there are multiple key fields, they are labeled &#39;0&#39;, &#39;1&#39;, and so on, and are explained in the <code>metadata</code>. [default to undefined]

Example

import { SeriesListRepFloat } from 'launchdarkly-api-typescript';

const instance: SeriesListRepFloat = {
    _links,
    metadata,
    series,
};

[Back to Model list] [Back to API list] [Back to README]