Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 869 Bytes

File metadata and controls

29 lines (20 loc) · 869 Bytes

ServiceAction

Properties

Name Type Description Notes
action str

Example

from workplace_client.models.service_action import ServiceAction

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

# convert the object into a dict
service_action_dict = service_action_instance.to_dict()
# create an instance of ServiceAction from a dict
service_action_from_dict = ServiceAction.from_dict(service_action_dict)

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