Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

FunctionParamResponse

Properties

NameTypeDescriptionNotes
d_typestr
locstr
addrstr
lengthint
namestr

Example

fromrevengai.models.function_param_responseimportFunctionParamResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionParamResponse from a JSON stringfunction_param_response_instance=FunctionParamResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionParamResponse.to_json())
# convert the object into a dictfunction_param_response_dict=function_param_response_instance.to_dict()
# create an instance of FunctionParamResponse from a dictfunction_param_response_from_dict=FunctionParamResponse.from_dict(function_param_response_dict)

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