Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1009 Bytes

Import.md

File metadata and controls

30 lines (24 loc) · 1009 Bytes

LaunchDarklyApi::Import

Properties

Name Type Description Notes
id String The import ID
segment_key String The segment key
creation_time Integer
mode String The import mode used, either <code>merge</code> or <code>replace</code>
status String The import status
files Array<FileRep> The imported files and their status [optional]
_links Hash<String, Link> The location and content type of related resources

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::Import.new(
  id: 1234a567-bcd8-9123-4567-abcd1234567f,
  segment_key: example-big-segment,
  creation_time: null,
  mode: replace,
  status: complete,
  files: [{&quot;filename&quot;:&quot;bigsegimport.csv&quot;,&quot;status&quot;:&quot;complete&quot;}],
  _links: null
)