Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.51 KB

CustomWordPositionOccurenceResponse.md

File metadata and controls

32 lines (23 loc) · 1.51 KB

CustomWordPositionOccurenceResponse

A Word Position Object

Properties

Name Type Description Notes
i_page int The page where the word occurence was found [optional]
i_x int The X coordinate (Horizontal) where the Word occurence was found. Coordinate is calculated at 100dpi (dot per inch). [optional]
i_y int The Y coordinate (Vertical) where the Word occurence was found. Coordinate is calculated at 100dpi (dot per inch). [optional]

Example

from eZmaxApi.models.custom_word_position_occurence_response import CustomWordPositionOccurenceResponse

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

# convert the object into a dict
custom_word_position_occurence_response_dict = custom_word_position_occurence_response_instance.to_dict()
# create an instance of CustomWordPositionOccurenceResponse from a dict
custom_word_position_occurence_response_form_dict = custom_word_position_occurence_response.from_dict(custom_word_position_occurence_response_dict)

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