Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

File metadata and controls

29 lines (20 loc) · 977 Bytes

MarkSpecifiedRequest

Properties

Name Type Description Notes
names List[str] [optional]

Example

from halo_client.models.mark_specified_request import MarkSpecifiedRequest

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

# convert the object into a dict
mark_specified_request_dict = mark_specified_request_instance.to_dict()
# create an instance of MarkSpecifiedRequest from a dict
mark_specified_request_from_dict = MarkSpecifiedRequest.from_dict(mark_specified_request_dict)

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