Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 932 Bytes

BatchArgs.md

File metadata and controls

31 lines (22 loc) · 932 Bytes

BatchArgs

Properties

Name Type Description Notes
plug_name str
function_type FunctionType
child_type str [optional]

Example

from waylay.services.registry.models.batch_args import BatchArgs

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

# convert the object into a dict
batch_args_dict = batch_args_instance.to_dict()
# create an instance of BatchArgs from a dict
batch_args_form_dict = batch_args.from_dict(batch_args_dict)

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