@sudoplatform/sudo-email
    Preparing search index...

    Interface StringFilter

    Interface for defining a string value which can be used as a filter on list queries. It is possible to specify more than one, but unlikely that combinations would return a sensible list since the predicates are ANDed together.

    interface StringFilter {
        beginsWith?: string;
        equal?: string;
        notEqual?: string;
    }
    Index

    Properties

    beginsWith?: string

    Specified if the list operation should return items starting with the specified value

    equal?: string

    Specified if the list operation should return items matching the specified value

    notEqual?: string

    Specified if the list operation should return items not matching the specified value