Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 844 Bytes

VersionsRep.md

File metadata and controls

24 lines (18 loc) · 844 Bytes

LaunchDarklyApi::VersionsRep

Properties

Name Type Description Notes
valid_versions Array<Integer> A list of all valid API versions. To learn more about our versioning, read Versioning.
latest_version Integer
current_version Integer
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]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::VersionsRep.new(
  valid_versions: null,
  latest_version: null,
  current_version: null,
  beta: false
)