Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.26 KB

File metadata and controls

35 lines (26 loc) · 1.26 KB

ModelImport

Properties

Name Type Description Notes
id str The import ID
segment_key str The segment key
creation_time int
mode str The import mode used, either <code>merge</code> or <code>replace</code>
status str The import status
files List[FileRep] The imported files and their status [optional]
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.model_import import ModelImport

# TODO update the JSON string below
json = "{}"
# create an instance of ModelImport from a JSON string
model_import_instance = ModelImport.from_json(json)
# print the JSON string representation of the object
print(ModelImport.to_json())

# convert the object into a dict
model_import_dict = model_import_instance.to_dict()
# create an instance of ModelImport from a dict
model_import_from_dict = ModelImport.from_dict(model_import_dict)

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