Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.04 KB

File metadata and controls

26 lines (19 loc) · 1.04 KB

VersionsRep

Properties

Name Type Description Notes
validVersions Array<number> A list of all valid API versions. To learn more about our versioning, read Versioning. [default to undefined]
latestVersion number [default to undefined]
currentVersion number [default to undefined]
beta boolean Whether the version of the API currently is use is a beta version. This is always <code>true</code> if you add the <code>LD-API-Version: beta</code> header to your request. [optional] [default to undefined]

Example

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

const instance: VersionsRep = {
    validVersions,
    latestVersion,
    currentVersion,
    beta,
};

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