Interface CaseFieldActionCreators

The case field action creators.

interface CaseFieldActionCreators {
    fetchCaseClassifications(): AsyncThunkAction<FetchClassificationsThunkReturn, void, AsyncThunkCaseAssistOptions<StateNeededByFetchClassifications>>;
    registerCaseField(payload: SetCaseFieldActionCreatorPayload): {
        payload: SetCaseFieldActionCreatorPayload;
        type: string;
    };
    updateCaseField(payload: SetCaseFieldActionCreatorPayload): {
        payload: SetCaseFieldActionCreatorPayload;
        type: string;
    };
}

Methods

  • Retrieves the case classifications from the platform. A single call retrieves classifications for all fields specified in the Case Assist configuration. Case classifications are retrieved based on the case information entered so far.

    Returns AsyncThunkAction<FetchClassificationsThunkReturn, void, AsyncThunkCaseAssistOptions<StateNeededByFetchClassifications>>

    A dispatchable action.