private static ResponseStatus ExtractStatus(string status) { try { return(EnumMapper.ResponseStatus(status)); } catch (Exception) { throw new FolkApiException($"Invalid status: {status}"); } }