Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.01 KB

File metadata and controls

28 lines (22 loc) · 1.01 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]
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,
  maintainer_id: null,
  maintainer_team_key: null,
  tags: null,
  archived: null
)