Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

FileRep

Properties

Name Type Description Notes
filename str The imported file name, including the extension [optional]
status str The imported file status [optional]

Example

from launchdarkly_api.models.file_rep import FileRep

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

# convert the object into a dict
file_rep_dict = file_rep_instance.to_dict()
# create an instance of FileRep from a dict
file_rep_from_dict = FileRep.from_dict(file_rep_dict)

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