ft3.core.codecs.enm module

Codecs enumerations.

class ParseErrorRef(*values)

Bases: Enum

Valid ErrorRef Enumeration.

bool_decode = 'Could not decode valid JSON string to python `bool`.'
invalid_arr_decode = 'Could not decode valid JSON array to python: `invalid item type(s)`.'
invalid_arr_len = 'Could not decode valid JSON array to python: `invalid array length`.'
invalid_json = 'Could not deserialize string as valid JSON.'
invalid_keys_decode = 'Could not decode valid JSON object to python: `invalid keys`.'
invalid_map_decode = 'Could not decode valid JSON object to python: `invalid item type(s)`.'
invalid_values_decode = 'Could not decode valid JSON object to python: `invalid values`.'
number_decode = 'Could not decode valid JSON string to python `numbers.Number`.'
null_decode = 'Could not decode valid JSON string to python `None`.'
datetime_decode = 'Could not decode value to valid `datetime`.'
literal_decode = 'Could not decode value to valid `Literal`.'
value_decode = 'Could not decode invalid value.'
class Boolean(*values)

Bases: Enum

Boolean Enumeration.

true = True
false = False
class NoneAlias(*values)

Bases: Enum

Nones Enumeration.

null = None
none = None
nan = None