Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

WorkflowTemplatesListingOutputRep

Properties

Name Type Description Notes
items List[WorkflowTemplateOutput]

Example

from launchdarkly_api.models.workflow_templates_listing_output_rep import WorkflowTemplatesListingOutputRep

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

# convert the object into a dict
workflow_templates_listing_output_rep_dict = workflow_templates_listing_output_rep_instance.to_dict()
# create an instance of WorkflowTemplatesListingOutputRep from a dict
workflow_templates_listing_output_rep_from_dict = WorkflowTemplatesListingOutputRep.from_dict(workflow_templates_listing_output_rep_dict)

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