Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

CustomWorkflowsListingOutput

Properties

Name Type Description Notes
items List[CustomWorkflowOutput] An array of workflows
total_count int Total number of workflows
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.custom_workflows_listing_output import CustomWorkflowsListingOutput

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

# convert the object into a dict
custom_workflows_listing_output_dict = custom_workflows_listing_output_instance.to_dict()
# create an instance of CustomWorkflowsListingOutput from a dict
custom_workflows_listing_output_from_dict = CustomWorkflowsListingOutput.from_dict(custom_workflows_listing_output_dict)

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