Variable getBillsByParcelNumberConst
getBillsByParcelNumber: {
failure: PayloadAC<
"GET_BILLS_BY_PARCEL_NUMBER_FAILURE",
{ error: string; parcelNumber: string },
>;
request: PayloadAC<
"GET_BILLS_BY_PARCEL_NUMBER_REQUEST",
{ parcelNumber: string },
>;
success: PayloadAC<
"GET_BILLS_BY_PARCEL_NUMBER_SUCCESS",
{ data: TaxBill[]; parcelNumber: string },
>;
} = ...
Type Declaration
failure: PayloadAC<
"GET_BILLS_BY_PARCEL_NUMBER_FAILURE",
{ error: string; parcelNumber: string },
>
request: PayloadAC<"GET_BILLS_BY_PARCEL_NUMBER_REQUEST", { parcelNumber: string }>
success: PayloadAC<
"GET_BILLS_BY_PARCEL_NUMBER_SUCCESS",
{ data: TaxBill[]; parcelNumber: string },
>