Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.13 KB

ProjectRep.md

File metadata and controls

32 lines (26 loc) · 1.13 KB

LaunchDarklyApi::ProjectRep

Properties

Name Type Description Notes
_links Hash<String, Link>
_id String
key String
include_in_snippet_by_default Boolean
default_client_side_availability ClientSideAvailability [optional]
name String
tags Array<String>
environments Array<Environment>

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ProjectRep.new(
  _links: {&quot;environments&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-project/environments&quot;,&quot;type&quot;:&quot;application/json&quot;},&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-project&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  _id: 57be1db38b75bf0772d11383,
  key: my-project,
  include_in_snippet_by_default: true,
  default_client_side_availability: null,
  name: My Project,
  tags: [&quot;ops&quot;],
  environments: null
)