Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1003 Bytes

File metadata and controls

31 lines (22 loc) · 1003 Bytes

ReferenceRep

Properties

Name Type Description Notes
path str File path of the reference
hint str Programming language used in the file [optional]
hunks List[HunkRep]

Example

from launchdarkly_api.models.reference_rep import ReferenceRep

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

# convert the object into a dict
reference_rep_dict = reference_rep_instance.to_dict()
# create an instance of ReferenceRep from a dict
reference_rep_from_dict = ReferenceRep.from_dict(reference_rep_dict)

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