Name | Type | Description | Notes |
---|---|---|---|
categories | List[CategoryFilter] | [optional] | |
filter_mode | str | [optional] | |
search_col | List[str] | [optional] | |
search_val | List[str] | [optional] | |
skip | str | [optional] | |
sort | List[SortBodyField] | [optional] | |
take | str | [optional] |
from cyperf.models.get_attacks_operation import GetAttacksOperation
# TODO update the JSON string below
json = "{}"
# create an instance of GetAttacksOperation from a JSON string
get_attacks_operation_instance = GetAttacksOperation.from_json(json)
# print the JSON string representation of the object
print(GetAttacksOperation.to_json())
# convert the object into a dict
get_attacks_operation_dict = get_attacks_operation_instance.to_dict()
# create an instance of GetAttacksOperation from a dict
get_attacks_operation_from_dict = GetAttacksOperation.from_dict(get_attacks_operation_dict)