Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.13 KB

File metadata and controls

30 lines (24 loc) · 1.13 KB

LaunchDarklyApi::ViewPatch

Properties

Name Type Description Notes
name String Human-readable name for the view [optional]
description String Optional detailed description of the view [optional]
generate_sdk_keys Boolean Whether to generate SDK keys for this view [optional]
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]
archived Boolean Whether or not the view is archived [optional]

Example

require 'launchdarkly_api'

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