Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.43 KB

ApplicationRep.md

File metadata and controls

38 lines (32 loc) · 1.43 KB

LaunchDarklyApi::ApplicationRep

Properties

Name Type Description Notes
flags ApplicationFlagCollectionRep [optional]
_access Access [optional]
_links Hash<String, Link> The location and content type of related resources [optional]
_version Integer Version of the application [optional]
auto_added Boolean Whether the application was automatically created because it was included in a context when a LaunchDarkly SDK evaluated a feature flag, or was created through the LaunchDarkly UI or REST API.
creation_date Integer [optional]
description String The application description [optional]
key String The unique identifier of this application
kind String To distinguish the kind of application
_maintainer MaintainerRep [optional]
name String The name of the application

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ApplicationRep.new(
  flags: null,
  _access: null,
  _links: null,
  _version: null,
  auto_added: true,
  creation_date: null,
  description: The LaunchDarkly Cafe app,
  key: com.launchdarkly.cafe,
  kind: mobile,
  _maintainer: null,
  name: LaunchDarklyCafe
)