Interface ContactExtraFilter

Un filtro por un campo propio del contacto. Un array de valores se lee como "cualquiera de".

interface ContactExtraFilter {
    key:
        | "number"
        | string & {}
        | "state"
        | "address"
        | "boolean_property"
        | "boolean_property2"
        | "building"
        | "city"
        | "coords"
        | "country"
        | "country_code"
        | "door"
        | "floor"
        | "number_property"
        | "number_property2"
        | "place_id"
        | "string_property"
        | "string_property2"
        | "zip_code";
    value: string
    | number
    | readonly number[]
    | readonly string[];
}

Properties

Properties

key:
    | "number"
    | string & {}
    | "state"
    | "address"
    | "boolean_property"
    | "boolean_property2"
    | "building"
    | "city"
    | "coords"
    | "country"
    | "country_code"
    | "door"
    | "floor"
    | "number_property"
    | "number_property2"
    | "place_id"
    | "string_property"
    | "string_property2"
    | "zip_code"
value: string | number | readonly number[] | readonly string[]