Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 767 Bytes

PatchSegmentRequest.md

File metadata and controls

20 lines (14 loc) · 767 Bytes

LaunchDarklyApi::PatchSegmentRequest

Properties

Name Type Description Notes
comment String Optional description of changes [optional]
instructions Array<PatchSegmentInstruction> Semantic patch instructions for the desired changes to the resource

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PatchSegmentRequest.new(
  comment: optional comment,
  instructions: [{&quot;contextKey&quot;:&quot;contextKey&quot;,&quot;contextKind&quot;:&quot;user&quot;,&quot;kind&quot;:&quot;updateExpiringTarget&quot;,&quot;targetType&quot;:&quot;included&quot;,&quot;value&quot;:1587582000000,&quot;version&quot;:0}]
)