/** Represents the enum public.GenericStatusEnum */
type GenericStatusEnum =
| 'pending'
| 'success'
| 'failed';
export default GenericStatusEnum;