Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.16 KB

File metadata and controls

30 lines (24 loc) · 1.16 KB

LaunchDarklyApi::ViewPost

Properties

Name Type Description Notes
key String Unique key for the view within the account/project
name String Human-readable name for the view
description String Optional detailed description of the view [optional][default to '']
generate_sdk_keys Boolean Whether to generate SDK keys for this view [optional][default to false]
maintainer_id String Member ID of the maintainer for this view. Only one of `maintainerId` or `maintainerTeamKey` can be specified. [optional]
maintainer_team_key String Key of the maintainer team for this view. Only one of `maintainerId` or `maintainerTeamKey` can be specified. [optional]
tags Array<String> Tags associated with this view [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ViewPost.new(
  key: null,
  name: null,
  description: null,
  generate_sdk_keys: null,
  maintainer_id: null,
  maintainer_team_key: null,
  tags: null
)