Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

LayerCollectionRep

Properties

Name Type Description Notes
items List[LayerRep] The layers in the project
total_count int The total number of layers in the project
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.layer_collection_rep import LayerCollectionRep

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

# convert the object into a dict
layer_collection_rep_dict = layer_collection_rep_instance.to_dict()
# create an instance of LayerCollectionRep from a dict
layer_collection_rep_from_dict = LayerCollectionRep.from_dict(layer_collection_rep_dict)

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