Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.63 KB

CommonResponseObjDebugPayloadGetList.md

File metadata and controls

38 lines (29 loc) · 2.63 KB

CommonResponseObjDebugPayloadGetList

This is a debug object containing debugging information on the actual function

Properties

Name Type Description Notes
i_version_min int The minimum version of the function that can be called
i_version_max int The maximum version of the function that can be called
a_required_permission List[int] An array of permissions required to access this function. If the value "0" is present in the array, anyone can call this function. You must have one of the permission to access the function. You don't need to have all of them.
b_version_deprecated bool Wheter the current route is deprecated or not
dt_response_date str Represent a Date Time. The timezone is the one configured in the User's profile.
a_filter CommonResponseFilter
a_order_by Dict[str, str] List of available values for eOrderBy
i_row_max int The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned.
i_row_offset int The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, [default to 0]

Example

from eZmaxApi.models.common_response_obj_debug_payload_get_list import CommonResponseObjDebugPayloadGetList

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

# convert the object into a dict
common_response_obj_debug_payload_get_list_dict = common_response_obj_debug_payload_get_list_instance.to_dict()
# create an instance of CommonResponseObjDebugPayloadGetList from a dict
common_response_obj_debug_payload_get_list_form_dict = common_response_obj_debug_payload_get_list.from_dict(common_response_obj_debug_payload_get_list_dict)

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