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 |
|
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: [{"filename":"bigsegimport.csv","status":"complete"}],
_links: null
)