class documentation

Represents a map.

Examples:

import fiftyone.operators.types as types

inputs = types.Object()
inputs.define_property(
    "image", types.Map(types.String(), types.Number())
)
Parameters
key_typethe type of the keys in the Map
value_typethe type of the values in the Map
Method __init__ Undocumented
Method to_json Undocumented
Instance Variable key_type Undocumented
Instance Variable value_type Undocumented
def __init__(self, key_type, value_type): (source)

Undocumented

def to_json(self): (source)
key_type = (source)

Undocumented

value_type = (source)

Undocumented