Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

AgeAttribute

Attributes qualifying the numericAgeEstimation classification.

Properties

Name Type Description Notes
age int The estimated age of the person in years. [optional]
age_min int The estimated minimum age of the person in years. [optional]
age_max int The estimated maximum age of the person in years. [optional]
probability int The probability of the estimated age. [optional]

Example

from irisnet_client.models.age_attribute import AgeAttribute

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

# convert the object into a dict
age_attribute_dict = age_attribute_instance.to_dict()
# create an instance of AgeAttribute from a dict
age_attribute_from_dict = AgeAttribute.from_dict(age_attribute_dict)

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