Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 936 Bytes

File metadata and controls

26 lines (20 loc) · 936 Bytes

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]
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::ViewPatch.new(
  name: null,
  description: null,
  maintainer_id: null,
  maintainer_team_key: null,
  tags: null
)