get_value method

get_value(field_name, field_value)

Returns a value for the specified field name or False if the field is not found.

def get_value(self, field_name: str, field_value: object):
    ...
ParameterTypeDescription
field_namestrThe name of the data field.
field_valueobjectReturns the field value.

Returns

True if value was found.

See Also