@procivis/react-native-one-core
    Preparing search index...

    Type Alias CredentialListQuery

    CredentialListQuery: ListQuery & {
        createdDateAfter?: string;
        createdDateBefore?: string;
        credentialSchemaIds?: CredentialSchema["id"][];
        exact?: CredentialListQueryExactColumnEnum[];
        ids?: CredentialListItem["id"][];
        include?: CredentialListIncludeEntityType[];
        issuanceDateAfter?: string;
        issuanceDateBefore?: string;
        lastModifiedAfter?: string;
        lastModifiedBefore?: string;
        profiles?: string[];
        revocationDateAfter?: string;
        revocationDateBefore?: string;
        roles?: CredentialRoleEnum[];
        sort?: SortableCredentialColumnEnum;
        sortDirection?: SortDirection;
        states?: CredentialStateEnum[];
    } & (
        | { name?: string; searchText?: never; searchType?: never }
        | {
            name?: never;
            searchText?: string;
            searchType?: CredentialListSearchType[];
        }
    )

    Type declaration

    • OptionalcreatedDateAfter?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionalcreatedDateBefore?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionalcredentialSchemaIds?: CredentialSchema["id"][]
    • Optionalexact?: CredentialListQueryExactColumnEnum[]
    • Optionalids?: CredentialListItem["id"][]
    • Optionalinclude?: CredentialListIncludeEntityType[]
    • OptionalissuanceDateAfter?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionalissuanceDateBefore?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionallastModifiedAfter?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionallastModifiedBefore?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • Optionalprofiles?: string[]
    • OptionalrevocationDateAfter?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • OptionalrevocationDateBefore?: string

      accepts the RFC3339 format, e.g. use the Date.toISOString

    • Optionalroles?: CredentialRoleEnum[]
    • Optionalsort?: SortableCredentialColumnEnum
    • OptionalsortDirection?: SortDirection
    • Optionalstates?: CredentialStateEnum[]
    • { name?: string; searchText?: never; searchType?: never }
    • { name?: never; searchText?: string; searchType?: CredentialListSearchType[] }