Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 708 Bytes

File metadata and controls

28 lines (19 loc) · 708 Bytes

Args

Properties

Name Type Description Notes

Example

from ksapi.models.args import Args

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

# convert the object into a dict
args_dict = args_instance.to_dict()
# create an instance of Args from a dict
args_from_dict = Args.from_dict(args_dict)

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