LaunchDarklyApi::SegmentBody Properties Name Type Description Notes name String A human-friendly name for the segment key String A unique key used to reference the segment description String A description of the segment's purpose [optional] tags Array<String> Tags for the segment [optional] unbounded Boolean Whether to create a standard segment (false) or a Big Segment (true). Only use a Big Segment if you need to add more than 15,000 users. [optional] Example require 'launchdarkly_api' instance = LaunchDarklyApi::SegmentBody.new( name: Example segment, key: example-segment, description: Bundle our sample users together, tags: ["testing"], unbounded: false )