Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.12 KB

File metadata and controls

32 lines (25 loc) · 1.12 KB

Import

Properties

Name Type Description Notes
id string The import ID [default to undefined]
segmentKey string The segment key [default to undefined]
creationTime number [default to undefined]
mode string The import mode used, either <code>merge</code> or <code>replace</code> [default to undefined]
status string The import status [default to undefined]
files Array<FileRep> The imported files and their status [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]

Example

import { Import } from 'launchdarkly-api-typescript';

const instance: Import = {
    id,
    segmentKey,
    creationTime,
    mode,
    status,
    files,
    _links,
};

[Back to Model list] [Back to API list] [Back to README]