Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

FunctionDataTypesParams

Properties

Name Type Description Notes
function_ids List[int] The function ID's to generate/get data types for

Example

from revengai.models.function_data_types_params import FunctionDataTypesParams

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

# convert the object into a dict
function_data_types_params_dict = function_data_types_params_instance.to_dict()
# create an instance of FunctionDataTypesParams from a dict
function_data_types_params_from_dict = FunctionDataTypesParams.from_dict(function_data_types_params_dict)

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