SubAttribute

class tamr_client.SubAttribute(name, type, is_nullable, description=None)
Parameters
  • name (str) –

  • type (AttributeType) –

  • is_nullable (bool) –

  • description (Optional [str]) –

tamr_client.attribute.sub.from_json(data)[source]

Make a SubAttribute from JSON data (deserialize)

Parameters

data (Dict[str, Any]) – JSON data received from Tamr server.

Return type

SubAttribute

tamr_client.attribute.sub.to_json(subattr)[source]

Serialize subattribute into JSON

Parameters

subattr (SubAttribute) – SubAttribute to serialize

Return type

Dict[str, Any]